while循环

while循环

<?php
$x=1;
while($x<=10){
    echo "这里是$x";
  $x++; }
?>
原文地址:https://www.cnblogs.com/haq5201314/p/9151848.html