PHP中的while循环

来源:互联网 发布:看最新电影的软件 编辑:程序博客网 时间:2024/06/05 06:36

<?php
 
  //声明变量
  $num = 1;
 
  while($num < 5){
   echo $num += 1;
  }
?>

原创粉丝点击