mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
80aaedea33
commit
c65729614f
2 changed files with 22 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue