> В том то и дело, что в PHP оно равно.. ????? ... !!!! 8-)))))
shourisha@gandalph $ php -v PHP 5.0.3 (cli) (built: Apr 5 2005 09:52:02) Copyright (c) 1997-2004 The PHP Group Zend Engine v2.0.3, Copyright (c) 1998-2004 Zend Technologies
shourisha@gandalph $ cat test.php <?php
$a = 0.2; $b = 1.2 - 1.0;
if ($a == $b) { print ("$a == $b\n"); } else { print ("$a != $b\n"); } ?>
shourisha@gandalph $ php test.php 0.2 != 0.2
Это-ж как Вы умудрились тот-же код наоборот? :)))))
|