Fixed bug #51194 (Missing documentation for errorcode PHP_JSON_ERROR_UTF8)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@296350 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kalle Sommer Nielsen 2010-03-18 17:15:03 +00:00
parent 80aaedea33
commit c65729614f
2 changed files with 22 additions and 0 deletions

View file

@ -54,6 +54,18 @@
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>JSON_ERROR_UTF8</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
Malformed UTF-8 characters, possibly incorrectly encoded. This
constant is available as of PHP 5.3.1.
</simpara>
</listitem>
</varlistentry>
</variablelist>
<para>

View file

@ -35,24 +35,34 @@
<row>
<entry>Constant</entry>
<entry>Meaning</entry>
<entry>Availability</entry>
</row>
</thead>
<tbody>
<row>
<entry><constant>JSON_ERROR_NONE</constant></entry>
<entry>No error has occurred</entry>
<entry></entry>
</row>
<row>
<entry><constant>JSON_ERROR_DEPTH</constant></entry>
<entry>The maximum stack depth has been exceeded</entry>
<entry></entry>
</row>
<row>
<entry><constant>JSON_ERROR_CTRL_CHAR</constant></entry>
<entry>Control character error, possibly incorrectly encoded</entry>
<entry></entry>
</row>
<row>
<entry><constant>JSON_ERROR_SYNTAX</constant></entry>
<entry>Syntax error</entry>
<entry></entry>
</row>
<row>
<entry><constant>JSON_ERROR_UTF8</constant></entry>
<entry>Malformed UTF-8 characters, possibly incorrectly encoded</entry>
<entry>PHP 5.3.1</entry>
</row>
</tbody>
</tgroup>