mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
integrated warning from error-handling, forgot this one
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@98810 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
12d1c99e26
commit
762a9325ce
1 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<!-- $Revision: 1.25 $ -->
|
||||
<appendix id="migration4">
|
||||
<title>Migrating from PHP 3 to PHP 4</title>
|
||||
|
||||
|
@ -215,6 +215,16 @@ php_admin_flag [PHP directive name] [On|Off]
|
|||
<literal>error_reporting= E_ALL & ~ ( E_NOTICE | E_WARNING
|
||||
)</literal>.
|
||||
</para>
|
||||
<warning>
|
||||
<para>
|
||||
When upgrading code or servers from PHP 3 to PHP 4 you should
|
||||
check these settings and calls to
|
||||
<function>error_reporting</function> or you might disable
|
||||
reporting the new error types, especially E_COMPILE_ERROR. This
|
||||
may lead to empty documents without any feedback of what happened
|
||||
or where to look for the problem.
|
||||
</para>
|
||||
</warning>
|
||||
<warning>
|
||||
<para>
|
||||
Using the old values 7 and 15 for setting up error reporting is
|
||||
|
|
Loading…
Reference in a new issue