x
 
<!DOCTYPE html>
<html>
<body>
<?php  
$i = 8;
do {
  echo $i;
  $i++;
} while ($i < 6);
?>
<p>如你所见,即使条件从未为真,代码也会执行一次。</p> 
</body>
</html>