Advertisement
M-Q711599

unlimited HDH NEW 2020

Jan 5th, 2020
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.52 KB | None | 0 0
  1.  
  2. ; About php.ini   ;
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; PHP's initialization file, generally called php.ini, is responsible for
  5. ; configuring many of the aspects of PHP's behavior.
  6.  
  7. ; PHP attempts to find and load this configuration from a number of locations.
  8. ; The following is a summary of its search order:
  9. ; 1. SAPI module specific location.
  10. ; 2. The PHPRC environment variable. (As of PHP 5.2.0)
  11. ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
  12. ; 4. Current working directory (except CLI)
  13. ; 5. The web server's directory (for SAPI modules), or directory of PHP
  14. ; (otherwise in Windows)
  15. ; 6. The directory from the --with-config-file-path compile time option, or the
  16. ; Windows directory (C:\windows or C:\winnt)
  17. ; See the PHP docs for more specific information.
  18. ; http://php.net/configuration.file
  19.  
  20. ; The syntax of the file is extremely simple.  Whitespace and lines
  21. ; beginning with a semicolon are silently ignored (as you probably guessed).
  22. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  23. ; they might mean something in the future.
  24.  
  25. ; Directives following the section heading [PATH=/www/mysite] only
  26. ; apply to PHP files in the /www/mysite directory.  Directives
  27. ; following the section heading [HOST=www.example.com] only apply to
  28. ; PHP files served from www.example.com.  Directives set in these
  29. ; special sections cannot be overridden by user-defined INI files or
  30. ; at runtime. Currently, [PATH=] and [HOST=] sections only work under
  31. ; CGI/FastCGI.
  32. ; http://php.net/ini.sections
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement