From: Andrey Hristov Date: Fri, 12 Dec 2003 20:50:12 +0000 (+0000) Subject: added entry about mysqli_fetch functions X-Git-Tag: php-5.0.0b3RC1~104 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23afd9b166ece8553e5b154d4ea58bfeec037374;p=php added entry about mysqli_fetch functions --- diff --git a/README.PHP4-TO-PHP5-THIN-CHANGES b/README.PHP4-TO-PHP5-THIN-CHANGES index 022135b443..9196481cff 100644 --- a/README.PHP4-TO-PHP5-THIN-CHANGES +++ b/README.PHP4-TO-PHP5-THIN-CHANGES @@ -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).