Why does this always return true:
true
$s = \'334rr\'; $i = (int)$s; if ($i == $s) { echo true; } else { echo false; }
If I ec
When compare string with integer using ==, string will try to case into integer.
==