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