标签: php variables types casting
<?php $x = ? if ($x == "1") print "1"; if ($x == "2") print "2"; if ($x == "3") print "3"; ?>
打印输出"123"的 $ x 必须是什么?
"123"
您只能指定一次 $ x 值。
答案 0 :(得分:2)
$x = true
解决方案:始终使用===。我从未见过==绝对必要的情况。
===
==
将此项作为检查规则添加到IDE中。