有一个foreach循环,有可能停止它,如果某个条件有效?
原文链接:https://www.f2er.com/php/140021.html例:
<?PHP foreach ($foo as $bar) { if (2+2 === 4) { // Do something and stop the cycle } } ?>