主页
PHP
PHP 运算符
tryphp_oper_not_identical
运行 ❯
×
更改方向
保存代码
更改主题
<?php $x = 100; $y = "100"; var_dump($x !== $y); // returns true because types are not equal ?>
bool(true)