note 102592 deleted from language.operators.comparison by danbrown

[email protected] Wed, 23 Feb 2011 07:47:17 -0800
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: erik[dot]NOSPAMdercole[at]gmail[dot]com 

----

<?php
	$b = "10431441702500000443" == "10431441702500000043";

	var_dump($b);
?>

Could anyone tell me why $b is TRUE? The comparison is between 2 (different) strings, how is it possibile?
If I use "===" operator the result is FALSE (correct).