From ee6c29a2106974c12c13d89367558e18ec160960 Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Tue, 6 Mar 2012 20:39:16 +0000 Subject: [PATCH] Add missing ini parameters. Give the UTF8 change more prominence. Change ini to php.ini git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323970 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/migration54.xml | 61 +++++++++++++++++++++++++------------- 1 file changed, 41 insertions(+), 20 deletions(-) diff --git a/appendices/migration54.xml b/appendices/migration54.xml index 754548fb87..7896a68d72 100644 --- a/appendices/migration54.xml +++ b/appendices/migration54.xml @@ -77,7 +77,7 @@ The register_globals and - register_long_arrays ini directives + register_long_arrays &php.ini; directives have been removed. @@ -98,7 +98,7 @@ In the date and time extension, the timezone can no longer be set using the TZ environment variable. Instead you have to specify a timezone using the - date.timezone ini option or date_default_timezone_set + date.timezone &php.ini; option or date_default_timezone_set function. PHP will no longer attempt to guess the timezone, and will instead fall back to "UTC" and issue a E_WARNING. @@ -234,7 +234,7 @@ <?= is now always available, regardless of the - short_open_tag ini option. + short_open_tag &php.ini; option. @@ -265,7 +265,7 @@ - Built-in web server in CLI mode. + Built-in development web server in CLI mode. @@ -286,7 +286,7 @@ - Added shortcut #inisetting=value to change ini settings at run-time in interactive readline CLI + Added shortcut #inisetting=value to change &php.ini; settings at run-time in interactive readline CLI @@ -1216,7 +1216,7 @@
Changes to INI file handling - The following ini directives have been removed: + The following &php.ini; directives have been removed: @@ -1237,7 +1237,7 @@ - define_syslog_variables and all related functions + define_syslog_variables @@ -1257,7 +1257,9 @@ - safe_mode and all related parameters + safe_mode, safe_mode_gid, + safe_mode_include_dir, safe_mode_exec_dir, + safe_mode_allowed_env_vars, and safe_mode_protected_env_vars @@ -1267,7 +1269,7 @@ - The following ini directives have been added: + The following &php.ini; directives have been added: @@ -1276,6 +1278,12 @@ in interactive mode. + + + cli_server.color to enable the built-in development web server to use ANSI color coding + in terminal output. + + max_input_vars - specifies how many GET/POST/COOKIE input variables may be @@ -1287,6 +1295,17 @@ zend.multibyte - to control the new multibyte support. + + + zend.script_encoding - This value will be used unless a + "declare(encoding=...)" directive appears at the top of the script. + + + + + zend.signal_check - to check for replaced signal handlers on shutdown. + + session.upload_progress.enabled, session.upload_progress.cleanup, @@ -1301,12 +1320,14 @@ - windows_show_crt_warning + windows_show_crt_warning - This directive + shows the Windows CRT warnings when enabled. These warnings were + displayed by default until now. - The following ini directives have been changed: + The following &php.ini;. directives have been changed: @@ -1326,6 +1347,15 @@
Other changes + + + The default character set is now UTF-8, instead of ISO-8859-1, + when the default_charset configuration setting is not set + ("", which is the default). This applies to functions such as htmlentities and + htmlspecialchars, or any code that relies on determine_charset(NULL) + internally. + + E_ALL now includes E_STRICT level @@ -1394,15 +1424,6 @@ constructor in the base class. - - - The default character set is now UTF-8, instead of ISO-8859-1, - when the default_charset configuration setting is not set - ("", which is the default). This applies to functions such as htmlentities and - htmlspecialchars, or any code that relies on determine_charset(NULL) - internally. - -