summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2002-07-15 00:22:42 +0000
committer <changelog@php.net>2002-07-15 00:22:42 +0000
commitd399c486aad1c6bffdd63c0e22b6acc6240d8df4 (patch)
tree95176d274c8776ae80fdef23513f6ebda1124f5b
parent2fba341e07662a6b083267fa2991c4abeabef2c9 (diff)
downloadphp-git-d399c486aad1c6bffdd63c0e22b6acc6240d8df4.tar.gz
NEWS update
-rw-r--r--NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 28d0df64aa..d4d3c18dfa 100644
--- 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)