From: Thies C. Arntzen Date: Tue, 19 Oct 1999 16:00:57 +0000 (+0000) Subject: added === operator support (type *and* value match) . samples: X-Git-Tag: php-4.0b3_RC2~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=65b152948e418e709893f6d3343e967ca2a789bc;p=php added === operator support (type *and* value match) . samples: (1 == "1") is true (1 === "1") is false (integer != string) (0 == false) is true (0 === false) is false (integer != boolean) --- diff --git a/NEWS b/NEWS index c6422b6764..300e7f47cb 100644 --- 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)