004-for循环输出

<?php
for ($counter = 1; $counter <= 6; $counter++)        //循环6次
{
    print("<B>counter is $counter</B><BR>
");    //输出6次
}
?>

原文地址:https://www.cnblogs.com/tianpan2019/p/10981751.html