summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2003-12-06 16:49:13 +0000
committerAndrey Hristov <andrey@php.net>2003-12-06 16:49:13 +0000
commitdf137ad240015f04a7b79b00b8f6bd594a99912f (patch)
tree153ee00db3cea6b612fb1c5dd41fc398d85bfe97
parent1fa74586870944b2c391ebccc426239fa5e429ce (diff)
downloadphp-git-df137ad240015f04a7b79b00b8f6bd594a99912f.tar.gz
ups, i forgot this entry
-rw-r--r--README.PHP4-TO-PHP5-THIN-CHANGES4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.PHP4-TO-PHP5-THIN-CHANGES b/README.PHP4-TO-PHP5-THIN-CHANGES
index af50a91ea9..022135b443 100644
--- a/README.PHP4-TO-PHP5-THIN-CHANGES
+++ b/README.PHP4-TO-PHP5-THIN-CHANGES
@@ -5,4 +5,6 @@
var_dump(strrpos("ABCDEF","DAF"));
?>
Will give you differents results. The diffence is in the second cal to strrpos(). The same applies and for strripos().
-2. Change illegal use of string offset from E_WARNING to E_ERROR \ No newline at end of file
+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.