]> granicus.if.org Git - php/commitdiff
added entry about mysqli_fetch functions
authorAndrey Hristov <andrey@php.net>
Fri, 12 Dec 2003 20:50:12 +0000 (20:50 +0000)
committerAndrey Hristov <andrey@php.net>
Fri, 12 Dec 2003 20:50:12 +0000 (20:50 +0000)
README.PHP4-TO-PHP5-THIN-CHANGES

index 022135b443c60bb9a21ea2e1cecd9bee3129a484..9196481cff8945ff52b298259a064cf041c4b0a9 100644 (file)
@@ -8,3 +8,5 @@
 2. Change illegal use of string offset from E_WARNING to E_ERROR
 3. array_merge() accepts only arrays. If non-array is passed a E_WARNING for every non-array
    parameter will be throwed. Be careful because your code may start emitting E_WARNING out of the blue.
+4. Be careful when porting from ext/mysql to ext/mysqli. mysqli_fetch_row()/mysqli_fetch_array()/mysql_fetch_assoc()
+   retun NULL when there is no more data in the result set (ext/mysql's functions return FALSE).