for循环是不是和do while循环一样都是先执行?
橱窗的光
橱窗的光 2016-12-17 13:42:14
0
2
1218
橱窗的光
橱窗的光

reply all (2)
数据分析师

Is the for loop executed first like the do while loop? -PHP Chinese website Q&A-Is the for loop executed first like the do while loop? -PHP Chinese website Q&A

Please watch and learn.

    迷茫

    for(表达式1;表达式2;表达式3){

    循环代码

    }

    先执行表达式1和表达式2 ,再到表达3去判断

    do{

    循环代码

    }while(条件)

    而do while 则是先执行一次,到while时在判断


      Latest Downloads
      More>
      Web Effects
      Website Source Code
      Website Materials
      Front End Template
      About us Disclaimer Sitemap
      php.cn:Public welfare online PHP training,Help PHP learners grow quickly!