<!DOCTYPE html>
<html>
<body>

<?php 
$x=1;

do {
   echo "Êý×ÖÊÇ£º$x <br>";
   $x++;
} while ($x<=5);
?>

</body>
</html>