Clarify type conversion on retrieval

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@340756 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2016-10-28 11:40:28 +00:00
parent e2775ed91c
commit 42dce53d6b
2 changed files with 18 additions and 4 deletions

View file

@ -59,8 +59,15 @@
</listitem>
<listitem>
<simpara>
Integers that would have caused an overflow (&gt; 32 bits)
are returned as strings.
Integers outside the range
<constant>PHP_INT_MIN</constant>..<constant>PHP_INT_MAX</constant> are
returned as strings.
</simpara>
</listitem>
<listitem>
<simpara>
Booleans ('L') are converted to <literal>1</literal> or
<literal>0</literal>.
</simpara>
</listitem>
</itemizedlist>

View file

@ -59,8 +59,15 @@
</listitem>
<listitem>
<simpara>
Integers that would have caused an overflow (&gt; 32 bits)
are returned as strings.
Integers outside the range
<constant>PHP_INT_MIN</constant>..<constant>PHP_INT_MAX</constant> are
returned as strings.
</simpara>
</listitem>
<listitem>
<simpara>
Booleans ('L') are converted to <literal>1</literal> or
<literal>0</literal>.
</simpara>
</listitem>
</itemizedlist>