Hi Guys
The Manual on comparison operators says “PHP Translate strings and resources to numbers…”
But how does it convert into numbers? What makes ‘PHP’ less than ‘php’?
[php]
$P = “PHP”;
$p = “php”;
echo ($P < $p);
[/php]
//returns 1
[php]echo ($P == $p);[/php]
//returns nothing?