]> granicus.if.org Git - php/commitdiff
NEWS update
author <changelog@php.net> <>
Mon, 15 Jul 2002 00:22:42 +0000 (00:22 +0000)
committer <changelog@php.net> <>
Mon, 15 Jul 2002 00:22:42 +0000 (00:22 +0000)
NEWS

diff --git a/NEWS b/NEWS
index 28d0df64aa22b5481972ce10281f3ef3e577d666..d4d3c18dfa60b38f2fd86c5ecd09fcb6d20dc68b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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)