Remove duplicate table

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@283114 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2009-06-30 11:14:41 +00:00
parent 2bc921a595
commit e29b823580

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.24 $ -->
<!-- $Revision: 1.25 $ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.error-reporting">
<refnamediv>
<refname>error_reporting</refname>
@ -36,118 +36,9 @@
so older integer-based error levels will not always behave as expected.
</para>
<para>
The available error level constants are listed below. The actual
The available error level constants and the actual
meanings of these error levels are described in the
<link linkend="errorfunc.constants">predefined constants</link>.
<table>
<title><function>error_reporting</function> level constants and bit values</title>
<tgroup cols="2">
<thead>
<row>
<entry>value</entry>
<entry>constant</entry>
</row>
</thead>
<tbody>
<row>
<entry>1</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-error">E_ERROR</link>
</entry>
</row>
<row>
<entry>2</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-warning">E_WARNING</link>
</entry>
</row>
<row>
<entry>4</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-parse">E_PARSE</link>
</entry>
</row>
<row>
<entry>8</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-notice">E_NOTICE</link>
</entry>
</row>
<row>
<entry>16</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-core-error">E_CORE_ERROR</link>
</entry>
</row>
<row>
<entry>32</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-core-warning">E_CORE_WARNING</link>
</entry>
</row>
<row>
<entry>64</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-compile-error">E_COMPILE_ERROR</link>
</entry>
</row>
<row>
<entry>128</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-compile-warning">E_COMPILE_WARNING</link>
</entry>
</row>
<row>
<entry>256</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-user-error">E_USER_ERROR</link>
</entry>
</row>
<row>
<entry>512</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-user-warning">E_USER_WARNING</link>
</entry>
</row>
<row>
<entry>1024</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-user-error">E_USER_NOTICE</link>
</entry>
</row>
<row>
<entry>6143</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-all">E_ALL</link>
</entry>
</row>
<row>
<entry>2048</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-strict">E_STRICT</link>
</entry>
</row>
<row>
<entry>4096</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-recoverable-error">E_RECOVERABLE_ERROR</link>
</entry>
</row>
<row>
<entry>8192</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-deprecated-error">E_DEPRECATED</link>
</entry>
</row>
<row>
<entry>16384</entry>
<entry>
<link linkend="errorfunc.constants.errorlevels.e-user-deprecated">E_USER_DEPRECATED</link>
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</listitem>
</varlistentry>