<!DOCTYPE html>
<html>
<body>
<?php
$x = 17;
$y = "17";
var_dump($x != $y); // 返回 false,因为值相等
?>
</body>
</html>