|
22 | 22 | ; The syntax of the file is extremely simple. Whitespace and Lines
|
23 | 23 | ; beginning with a semicolon are silently ignored (as you probably guessed).
|
24 | 24 | ; Section headers (e.g. [Foo]) are also silently ignored, even though
|
25 |
| -; they might mean something in the future. The exceptions to this rule are |
26 |
| -; section headers starting with [HOST= or [PATH= |
| 25 | +; they might mean something in the future. |
| 26 | + |
| 27 | +; Directives following the section heading [PATH=/www/mysite] only |
| 28 | +; apply to PHP files in the /www/mysite directory. Directives |
| 29 | +; following the section heading [HOST=www.example.com] only apply to |
| 30 | +; PHP files served from www.example.com. Directives set in these |
| 31 | +; special sections cannot be overridden by user-defined INI files or |
| 32 | +; at runtime. Currently, [PATH=] and [HOST=] sections only work under |
| 33 | +; CGI/FastCGI. |
27 | 34 | ; http://www.php.net/manual/en/ini.sections.php
|
28 | 35 |
|
29 | 36 | ; Directives are specified using the following syntax:
|
30 | 37 | ; directive = value
|
31 | 38 | ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
|
| 39 | +; Directives are variables used to configure PHP or PHP extensions. |
| 40 | +; There is no name validation. If PHP can't find an expected |
| 41 | +; directive because it is not set or is mistyped, a default value will be used. |
32 | 42 |
|
33 | 43 | ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
|
34 | 44 | ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
|
35 |
| -; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo"). |
| 45 | +; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a |
| 46 | +; previously set variable or directive (e.g. ${foo}) |
36 | 47 |
|
37 | 48 | ; Expressions in the INI file are limited to bitwise operators and parentheses:
|
38 | 49 | ; | bitwise OR
|
| 50 | +; ^ bitwise XOR |
39 | 51 | ; & bitwise AND
|
40 | 52 | ; ~ bitwise NOT
|
41 | 53 | ; ! boolean NOT
|
@@ -461,7 +473,7 @@ memory_limit = 128M
|
461 | 473 | ; development and early testing.
|
462 | 474 | ;
|
463 | 475 | ; Error Level Constants:
|
464 |
| -; E_ALL - All errors and warnings (doesn't include E_STRICT) |
| 476 | +; E_ALL - All errors and warnings (includes E_STRICT as of PHP 6.0.0) |
465 | 477 | ; E_ERROR - fatal run-time errors
|
466 | 478 | ; E_RECOVERABLE_ERROR - almost fatal run-time errors
|
467 | 479 | ; E_WARNING - run-time warnings (non-fatal errors)
|
@@ -916,7 +928,7 @@ default_socket_timeout = 60
|
916 | 928 | ;
|
917 | 929 | ; extension=/path/to/extension/msql.so
|
918 | 930 | ;
|
919 |
| -; If you only provide the name of the extension, PHP will look for it in it's |
| 931 | +; If you only provide the name of the extension, PHP will look for it in its |
920 | 932 | ; default extension directory.
|
921 | 933 | ;
|
922 | 934 | ; Windows Extensions
|
@@ -1075,7 +1087,7 @@ smtp_port = 25
|
1075 | 1087 | mail.add_x_header = On
|
1076 | 1088 |
|
1077 | 1089 | ; Log all mail() calls including the full path of the script, line #, to address and headers
|
1078 |
| -mail.log = |
| 1090 | +;mail.log = |
1079 | 1091 |
|
1080 | 1092 | [SQL]
|
1081 | 1093 | ; http://www.php.net/manual/en/ini.core.php#ini.sql.safe-mode
|
@@ -1678,7 +1690,12 @@ mssql.secure_connection = Off
|
1678 | 1690 | ;mbstring.func_overload = 0
|
1679 | 1691 |
|
1680 | 1692 | ; enable strict encoding detection.
|
1681 |
| -;mbstring.strict_encoding = Off |
| 1693 | +;mbstring.strict_detection = Off |
| 1694 | + |
| 1695 | +; This directive specifies the regex pattern of content types for which mb_output_handler() |
| 1696 | +; is activated. |
| 1697 | +; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) |
| 1698 | +;mbstring.http_output_conv_mimetype= |
1682 | 1699 |
|
1683 | 1700 | [gd]
|
1684 | 1701 | ; Tell the jpeg decode to ignore warnings and try to create
|
|
0 commit comments