ericstewart             Mon Mar 23 02:36:35 2009 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src    php.ini-development php.ini-production 
  Log:
  1. Involves an mbstring setting correction regarding:
  http://marc.info/?l=php-cvs&m=123596904426621&w=2
  
  2. Added mbstring.http_output_conv_mimetype directive.
  
  3. Adds an additional comment including XOR in the list of usable bitwise 
operators.
  
  4. Note regarding the merge of E_STRICT into E_ALL in PHP 6.0.0.
  
  5. Notes regarding [PATH] and [HOST] use in CGI/FastCGI.
  
http://cvs.php.net/viewvc.cgi/php-src/php.ini-development?r1=1.1.2.2&r2=1.1.2.3&diff_format=u
Index: php-src/php.ini-development
diff -u php-src/php.ini-development:1.1.2.2 php-src/php.ini-development:1.1.2.3
--- php-src/php.ini-development:1.1.2.2 Tue Mar 17 19:19:17 2009
+++ php-src/php.ini-development Mon Mar 23 02:36:34 2009
@@ -22,20 +22,32 @@
 ; The syntax of the file is extremely simple.  Whitespace and Lines
 ; beginning with a semicolon are silently ignored (as you probably guessed).
 ; Section headers (e.g. [Foo]) are also silently ignored, even though
-; they might mean something in the future. The exceptions to this rule are
-; section headers starting with [HOST= or [PATH=
+; they might mean something in the future. 
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory.  Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com.  Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
 ; http://www.php.net/manual/en/ini.sections.php
 
 ; Directives are specified using the following syntax:
 ; directive = value
 ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation.  If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
 
 ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
 ; of the INI constants (On, Off, True, False, Yes, No and None) or an 
expression
-; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
 
 ; Expressions in the INI file are limited to bitwise operators and parentheses:
 ; |  bitwise OR
+; ^  bitwise XOR
 ; &  bitwise AND
 ; ~  bitwise NOT
 ; !  boolean NOT
@@ -461,7 +473,7 @@
 ; development and early testing.
 ;
 ; Error Level Constants:
-; E_ALL             - All errors and warnings (doesn't include E_STRICT)
+; E_ALL             - All errors and warnings (includes E_STRICT as of PHP 
6.0.0)
 ; E_ERROR           - fatal run-time errors
 ; E_RECOVERABLE_ERROR  - almost fatal run-time errors
 ; E_WARNING         - run-time warnings (non-fatal errors)
@@ -916,7 +928,7 @@
 ;
 ;   extension=/path/to/extension/msql.so
 ;
-; If you only provide the name of the extension, PHP will look for it in it's
+; If you only provide the name of the extension, PHP will look for it in its
 ; default extension directory.
 ;
 ; Windows Extensions
@@ -1075,7 +1087,7 @@
 mail.add_x_header = On
 
 ; Log all mail() calls including the full path of the script, line #, to 
address and headers
-mail.log =
+;mail.log =
 
 [SQL]
 ; http://www.php.net/manual/en/ini.core.php#ini.sql.safe-mode
@@ -1678,7 +1690,12 @@
 ;mbstring.func_overload = 0
 
 ; enable strict encoding detection.
-;mbstring.strict_encoding = Off
+;mbstring.strict_detection = Off
+
+; This directive specifies the regex pattern of content types for which 
mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
 
 [gd]
 ; Tell the jpeg decode to ignore warnings and try to create
http://cvs.php.net/viewvc.cgi/php-src/php.ini-production?r1=1.1.2.2&r2=1.1.2.3&diff_format=u
Index: php-src/php.ini-production
diff -u php-src/php.ini-production:1.1.2.2 php-src/php.ini-production:1.1.2.3
--- php-src/php.ini-production:1.1.2.2  Tue Mar 17 19:19:17 2009
+++ php-src/php.ini-production  Mon Mar 23 02:36:34 2009
@@ -22,20 +22,32 @@
 ; The syntax of the file is extremely simple.  Whitespace and Lines
 ; beginning with a semicolon are silently ignored (as you probably guessed).
 ; Section headers (e.g. [Foo]) are also silently ignored, even though
-; they might mean something in the future. The exceptions to this rule are
-; section headers starting with [HOST= or [PATH=
+; they might mean something in the future. 
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory.  Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com.  Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
 ; http://www.php.net/manual/en/ini.sections.php
 
 ; Directives are specified using the following syntax:
 ; directive = value
 ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation.  If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
 
 ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
 ; of the INI constants (On, Off, True, False, Yes, No and None) or an 
expression
-; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
 
 ; Expressions in the INI file are limited to bitwise operators and parentheses:
 ; |  bitwise OR
+; ^  bitwise XOR
 ; &  bitwise AND
 ; ~  bitwise NOT
 ; !  boolean NOT
@@ -461,7 +473,7 @@
 ; development and early testing.
 ;
 ; Error Level Constants:
-; E_ALL             - All errors and warnings (doesn't include E_STRICT)
+; E_ALL             - All errors and warnings (includes E_STRICT as of PHP 
6.0.0)
 ; E_ERROR           - fatal run-time errors
 ; E_RECOVERABLE_ERROR  - almost fatal run-time errors
 ; E_WARNING         - run-time warnings (non-fatal errors)
@@ -916,7 +928,7 @@
 ;
 ;   extension=/path/to/extension/msql.so
 ;
-; If you only provide the name of the extension, PHP will look for it in it's
+; If you only provide the name of the extension, PHP will look for it in its
 ; default extension directory.
 ;
 ; Windows Extensions
@@ -1678,7 +1690,12 @@
 ;mbstring.func_overload = 0
 
 ; enable strict encoding detection.
-;mbstring.strict_encoding = Off
+;mbstring.strict_detection = Off
+
+; This directive specifies the regex pattern of content types for which 
mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
 
 [gd]
 ; Tell the jpeg decode to ignore warnings and try to create



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to