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