Hi All,
Can anyone explain me why the following code:
if ("info" == 0) echo "is 0\n"; else echo "not 0\n";
Results in: not 0
Whereas:
if ("inf" == 0) echo "is 0\n"; else echo "not 0\n";
Results in: is 0
Notice the difference: info in the first sample, inf in the second sample.
The used PHP version is PHP 4.1.2 (CLI version)
Erwin Kerk
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php