From 911a1c5c18eaedc9f2c10011d63419fd63ac7c7c Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Fri, 30 Dec 2016 13:46:46 +0000 Subject: [PATCH] Fix #73827: Empty cell translates to what? git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@341550 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/sqlite3/sqlite3result/fetcharray.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reference/sqlite3/sqlite3result/fetcharray.xml b/reference/sqlite3/sqlite3result/fetcharray.xml index c12c24b8bc..01d92202b0 100644 --- a/reference/sqlite3/sqlite3result/fetcharray.xml +++ b/reference/sqlite3/sqlite3result/fetcharray.xml @@ -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. + + The types of the values of the returned array are mapped from SQLite3 types + as follows: integers are mapped to integer if they fit into the + range PHP_INT_MIN..PHP_INT_MAX, and + to string otherwise. Floats are mapped to float, + NULL values are mapped to null, and strings + and blobs are mapped to string. +