git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@146235 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2003-12-11 17:15:43 +00:00
parent 4085ee780b
commit e9e79503f0
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.10 $ -->
<!-- $Revision: 1.11 $ -->
<section id="errorfunc.constants">
&reftitle.constants;
&extension.constants.core;
@ -195,7 +195,7 @@
<entry>
Run-time notices. Enable to have PHP suggest changes
to your code which will ensure the best interoperability
and forward compatability of your code.
and forward compatibility of your code.
</entry>
<entry>PHP 5 only</entry>
</row>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.16 $ -->
<!-- $Revision: 1.17 $ -->
<section id="errorfunc.configuration">
&reftitle.runtime;
&extension.runtime;
@ -129,8 +129,8 @@
<note>
<para>Enabling <constant>E_NOTICE</constant> during development has
some benefits. For debugging purposes: NOTICE messages will warn you
about possibls bugs in your code. For example, use of unassigned values
are warned. It is extremely useful to find typos and
about possible bugs in your code. For example, use of unassigned values
is warned. It is extremely useful to find typos and
to save time for debugging. NOTICE messages will warn you about bad style.
For example, $arr[item] is better to be written as $arr['item'] since
PHP tries to treat "item" as constant. If it is not a constant, PHP assumes