x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = 5;
var_dump($x);
echo "<br>";
$x = "Hello";
var_dump($x);
?> 
<p>为了更好的可读性,添加了换行。</p>
</body>
</html>