php中的等于是如何判定的?为什么整形的1可以和字符串型的1相等?
例如
$a=1;
$b="1";
$c=$a==$b;
$c=true
只要值相同就可以相等是吗?
例如
$a=1;
$b="1";
$c=$a==$b;
$c=true
只要值相同就可以相等是吗?
2016-11-25
<?php
$a = TRUE; //A同意
$b = TRUE; //B同意
$c = FALSE; //C反对
$d = FALSE; //D反对
//咱顺便复习下三元运算符
echo ($a and $b)?$e:$f;
echo "<br />";
echo ($a or $c)?$e:$f;
echo "<br />";
echo ($a xor $c xor $d)?$e:$f;
echo "<br />";
echo !$c?$e:$f;
echo "<br />";
echo $a && $d?$e:$f;
echo "<br />";
echo $b || $c|| $d?$e:$f
?>
举报