<?php $i = 1; while($i < 10){ echo $i++;//輸出$i,並且每次+1 } //output:123456789 ?> ... <?php foreach($array as $key => $value){ 做一些處理; } ?>.
確定! 回上一頁