]> granicus.if.org Git - php/commitdiff
added === operator support (type *and* value match) . samples:
authorThies C. Arntzen <thies@php.net>
Tue, 19 Oct 1999 16:00:57 +0000 (16:00 +0000)
committerThies C. Arntzen <thies@php.net>
Tue, 19 Oct 1999 16:00:57 +0000 (16:00 +0000)
(1 == "1") is true
(1 === "1") is false (integer != string)
(0 == false) is true
(0 === false) is false (integer != boolean)

NEWS

diff --git a/NEWS b/NEWS
index c6422b67641ceaab01a4ceb262a19a393324746f..300e7f47cba880ba44a311049692b7d39310bf47 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,7 @@ PHP 4.0                                                                    NEWS
 
 ?? ?? 1999, Version 4.0 Beta 3
 
+- added === operator support. (Andi & Thies, Zend library)
 - unserialize() now gives a notice when passed invalid data. (Thies)
 - Fixed shuffle() so that it no longer breaks on Solaris. (Andrei)
 - Added is_resource(), is_bool() functions. (Thies)