x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = 5;      // $x 是一个整数
$y = "Bill"; // $y 是一个字符串
echo $x;
echo $y;
?>
</body>
</html>