PHP에서 foreach 루프를 중지하는 방법: 1. continue를 통해 foreach 루프에서 빠져나옵니다. 2. break를 통해 foreach 루프를 종료합니다.
이 문서의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
php foreach의 루프를 중지하는 방법?
foreach는 이/현재 루프에서 빠져나와 종료합니다. loop method
foreach() 루프 루프에서 특정 조건이 충족되면 이 루프에서 벗어나 다음 루프를 계속 실행하거나 특정 조건이 충족되면 foreach() 루프를 종료하려면 다음을 수행합니다. 사용: 각각 계속 및 중단
PHP:
foreach($arras $key => $value){ if($value=='b'){ $html.= $value; continue;// 当 $value为b时,跳出本次循环 } if($value=='c'){ $html.= $value; break;// 当 $value为c时,终止循环 } } echo$html; // 输出: abc
JavaScript:
var myerror = null; try{ arr.forEach(function(el,index){ if (el==20) { console.log("try中遇到20,能退出吗?");// foreach.break=new Error("StopIteration"); }else{ console.log(el); } }); }catch(e){ console.log(e.message); if(e.message==="foreach is not defined") { console.log("跳出来了?");// return; }else throw e; }//可以跳出来
권장 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP foreach에서 루핑을 중지하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!