Fix #73827: Empty cell translates to what?

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@341550 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2016-12-30 13:46:46 +00:00
parent a258daf0ac
commit 911a1c5c18

View file

@ -68,6 +68,14 @@
Returns a result row as an associatively or numerically indexed array or
both. Alternately will return &false; if there are no more rows.
</para>
<para>
The types of the values of the returned array are mapped from SQLite3 types
as follows: integers are mapped to <type>integer</type> if they fit into the
range <constant>PHP_INT_MIN</constant>..<constant>PHP_INT_MAX</constant>, and
to <type>string</type> otherwise. Floats are mapped to <type>float</type>,
<literal>NULL</literal> values are mapped to <type>null</type>, and strings
and blobs are mapped to <type>string</type>.
</para>
</refsect1>
</refentry>