x
 
<!DOCTYPE html>
<html>
<body>
<?php 
$x=1;
do {
   echo "数字是:$x <br>";
   $x++;
} while ($x<=5);
?>
</body>
</html>