]> granicus.if.org Git - php/commit
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)
commit65b152948e418e709893f6d3343e967ca2a789bc
tree29f0d0e6415972742e1c2a83b4e9de2d23dff439
parent816627b16c5f7e36ea5de45e9f185b9572bdcd8b
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)
NEWS