Blogger Information
Blog 263
fans 3
comment 2
visits 113280
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
for的语句一里面初始化任意(或者多个)值
福哥的博客
Original
1196 people have browsed it
<?php

for($i=0,$a=5;$i<$a;$i++){
    echo $i;
}
//多个赋值用逗号隔开,条件用;隔开
?>
<?php
$i = 0;
$a=5;
for(;$i<$a;$i++){
    echo $i;
}
//初始值语句可以省略,写在外面但是“;”号保留


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post