Php foreach loop wrapping every 2 items

后端 未结 6 1340
梦谈多话
梦谈多话 2021-02-06 08:03
query(a
6条回答
  •  生来不讨喜
    2021-02-06 08:41

    Try this

    $i = 1;
            //Build custom items
            foreach($children as $child){
            if($i>2){
             $i =1;
            }
    
            if ($i==2) {
               //close row
            }
           $i++;
       }
    

提交回复
热议问题