changelog Sun Jul 14 20:22:43 2002 EDT
Modified files:
/php4 NEWS
Log:
NEWS update
Index: php4/NEWS
diff -u php4/NEWS:1.1039 php4/NEWS:1.1040
--- php4/NEWS:1.1039 Sun Jul 14 14:30:11 2002
+++ php4/NEWS Sun Jul 14 20:22:42 2002
@@ -1,6 +1,14 @@
PHP 4 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2002, Version 4.3.0
+- Added 'type juggling' for boolean values. The following conversions are
+ done (Derick):
+- $a = FALSE; $a++; /* $a is now bool(true); */
+ $a = TRUE; $a++; /* $a is now int(2); */
+ $a = FALSE; $a--; /* $a is now int(-1); */
+ $a = TRUE; $a--; /* $a is now bool(false); */
+- Fixed cases where preg_split() incorrectly terminated final element if
+ it contained null byte. (Andrei)
- Added persistent connections/pipelining to thttpd. (Sascha)
- Fixed two potential blocking issues in thttpd. (Sascha)
- Fixed broken header detection on Solaris. (Sascha)