mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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
This commit is contained in:
parent
ee944b73a7
commit
ee6c29a210
1 changed files with 41 additions and 20 deletions
|
@ -77,7 +77,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
The <link linkend="ini.register-globals">register_globals</link> and
|
||||
<link linkend="ini.register-long-arrays">register_long_arrays</link> ini directives
|
||||
<link linkend="ini.register-long-arrays">register_long_arrays</link> &php.ini; directives
|
||||
have been removed.
|
||||
</simpara>
|
||||
</listitem>
|
||||
|
@ -98,7 +98,7 @@
|
|||
<simpara>
|
||||
In the <link linkend="book.datetime">date and time extension</link>, the timezone can no longer be
|
||||
set using the TZ environment variable. Instead you have to specify a timezone using the
|
||||
<link linkend="ini.date.timezone">date.timezone</link> ini option or <function>date_default_timezone_set</function>
|
||||
<link linkend="ini.date.timezone">date.timezone</link> &php.ini; option or <function>date_default_timezone_set</function>
|
||||
function. PHP will no longer attempt to guess the timezone, and will instead fall back to "UTC" and issue
|
||||
a <constant>E_WARNING</constant>.
|
||||
</simpara>
|
||||
|
@ -234,7 +234,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
<literal><?=</literal> is now always available, regardless of the
|
||||
<link linkend="ini.short-open-tag">short_open_tag</link> ini option.
|
||||
<link linkend="ini.short-open-tag">short_open_tag</link> &php.ini; option.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -265,7 +265,7 @@
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Built-in <link linkend="features.commandline.webserver">web server in CLI mode</link>.
|
||||
Built-in development <link linkend="features.commandline.webserver">web server in CLI mode</link>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
@ -286,7 +286,7 @@
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Added shortcut <literal>#inisetting=value</literal> to change ini settings at run-time in interactive readline CLI
|
||||
Added shortcut <literal>#inisetting=value</literal> to change &php.ini; settings at run-time in interactive readline CLI
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -1216,7 +1216,7 @@
|
|||
<section xml:id="migration54.ini">
|
||||
<title>Changes to INI file handling</title>
|
||||
<simpara>
|
||||
The following ini directives have been removed:
|
||||
The following &php.ini; directives have been removed:
|
||||
</simpara>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
@ -1237,7 +1237,7 @@
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>define_syslog_variables</literal> and all related functions
|
||||
<literal>define_syslog_variables</literal>
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -1257,7 +1257,9 @@
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>safe_mode</literal> and all related parameters
|
||||
<literal>safe_mode</literal>, <literal>safe_mode_gid</literal>,
|
||||
<literal>safe_mode_include_dir</literal>, <literal>safe_mode_exec_dir</literal>,
|
||||
<literal>safe_mode_allowed_env_vars</literal>, and <literal>safe_mode_protected_env_vars</literal>
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -1267,7 +1269,7 @@
|
|||
</listitem>
|
||||
</itemizedlist>
|
||||
<simpara>
|
||||
The following ini directives have been added:
|
||||
The following &php.ini; directives have been added:
|
||||
</simpara>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
@ -1276,6 +1278,12 @@
|
|||
in interactive mode.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>cli_server.color</literal> to enable the built-in development web server to use ANSI color coding
|
||||
in terminal output.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>max_input_vars</literal> - specifies how many GET/POST/COOKIE input variables may be
|
||||
|
@ -1287,6 +1295,17 @@
|
|||
<literal>zend.multibyte</literal> - to control the new multibyte support.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>zend.script_encoding</literal> - This value will be used unless a
|
||||
"declare(encoding=...)" directive appears at the top of the script.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>zend.signal_check</literal> - to check for replaced signal handlers on shutdown.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.upload_progress.enabled</literal>, <literal>session.upload_progress.cleanup</literal>,
|
||||
|
@ -1301,12 +1320,14 @@
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>windows_show_crt_warning</literal>
|
||||
<literal>windows_show_crt_warning</literal> - This directive
|
||||
shows the Windows CRT warnings when enabled. These warnings were
|
||||
displayed by default until now.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
<simpara>
|
||||
The following ini directives have been changed:
|
||||
The following &php.ini;. directives have been changed:
|
||||
</simpara>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
@ -1326,6 +1347,15 @@
|
|||
<section xml:id="migration54.other">
|
||||
<title>Other changes</title>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
The default character set is now <literal>UTF-8</literal>, instead of <literal>ISO-8859-1</literal>,
|
||||
when the <link linkend="ini.default-charset">default_charset</link> configuration setting is not set
|
||||
("", which is the default). This applies to functions such as <function>htmlentities</function> and
|
||||
<function>htmlspecialchars</function>, or any code that relies on <literal>determine_charset(NULL)</literal>
|
||||
internally.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<constant>E_ALL</constant> now includes <constant>E_STRICT</constant> level
|
||||
|
@ -1394,15 +1424,6 @@
|
|||
constructor in the base class.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
The default character set is now <literal>UTF-8</literal>, instead of <literal>ISO-8859-1</literal>,
|
||||
when the <link linkend="ini.default-charset">default_charset</link> configuration setting is not set
|
||||
("", which is the default). This applies to functions such as <function>htmlentities</function> and
|
||||
<function>htmlspecialchars</function>, or any code that relies on <literal>determine_charset(NULL)</literal>
|
||||
internally.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
</appendix>
|
||||
|
|
Loading…
Reference in a new issue