summaryrefslogtreecommitdiff
path: root/README.PHP4-TO-PHP5-THIN-CHANGES
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2003-12-12 20:50:12 +0000
committerAndrey Hristov <andrey@php.net>2003-12-12 20:50:12 +0000
commit23afd9b166ece8553e5b154d4ea58bfeec037374 (patch)
tree5f0f635d5ddb1282a4f9184e90abd0dc9df98c28 /README.PHP4-TO-PHP5-THIN-CHANGES
parent1628eb107485e299f23326ee3653fe35bad6ddec (diff)
downloadphp-git-23afd9b166ece8553e5b154d4ea58bfeec037374.tar.gz
added entry about mysqli_fetch functions
Diffstat (limited to 'README.PHP4-TO-PHP5-THIN-CHANGES')
-rw-r--r--README.PHP4-TO-PHP5-THIN-CHANGES2
1 files changed, 2 insertions, 0 deletions
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).