<!DOCTYPE html>
<html>
<body>
<?php
$x = 0;
while($x < 10) {
$x++;
if ($x == 4) {
continue;
}
echo "数字是:$x <br>";
?>
</body>
</html>