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