mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
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)
This commit is contained in:
parent
816627b16c
commit
65b152948e
1
NEWS
1
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)
|
||||
|
Loading…
Reference in New Issue
Block a user