x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = 17;  
$y = "17";
var_dump($x !== $y); // 返回 true,因为类型不同
?>  
</body>
</html>