답변:
break
루프를 완전히 끝내고 continue
현재 반복을 바로 가기 만하고 다음 반복으로 넘어갑니다.
while ($foo) { <--------------------┐
continue; --- goes back here --┘
break; ----- jumps here ----┐
} |
<--------------------┘
이것은 다음과 같이 사용됩니다 :
while ($droid = searchDroids()) {
if ($droid != $theDroidYoureLookingFor) {
continue; // ..the search with the next droid
}
$foundDroidYoureLookingFor = true;
break; // ..off the search
}
break
와 continue
동일하다 switch
. 둘 다 스위치에서 나옵니다. 필요한 경우 외부 루프를 빠져 나갑니다 continue 2
.
break는 현재 루프를 종료하고 루프의 다음 사이클로 즉시 시작합니다.
예:
$i = 10;
while (--$i)
{
if ($i == 8)
{
continue;
}
if ($i == 5)
{
break;
}
echo $i . "\n";
}
출력합니다 :
9
7
6
기록의 경우 :
PHP에서 switch 문은 continue 목적으로 루핑 구조 로 간주 됩니다 .
continue 2
그런 경우에 사용합니다.
루프 문에서 나가는 데 사용되지만 특정 조건에서 스크립트를 중지 한 다음 끝에 도달 할 때까지 루프 문을 계속하십시오.
for($i=0; $i<10; $i++){
if($i == 5){
echo "It reach five<br>";
continue;
}
echo $i . "<br>";
}
echo "<hr>";
for($i=0; $i<10; $i++){
if($i == 5){
echo "It reach end<br>";
break;
}
echo $i . "<br>";
}
그것이 당신을 도울 수 있기를 바랍니다.
'continue'는 루핑 구조 내에서 사용되어 나머지 현재 루프 반복을 건너 뛰고 조건 평가에서 실행을 계속 한 후 다음 반복의 시작을 계속합니다.
'break'는 for-while 또는 스위치 구조에 대한 전류 실행을 종료합니다.
break는 중첩 엔 클로징 구조가 몇 개나 나올지를 알려주는 선택적 숫자 인수를 허용합니다.
다음 링크를 확인하십시오.
http://www.php.net/manual/en/control-structures.break.php
http://www.php.net/manual/en/control-structures.continue.php
도움이 되길 바랍니다 ..
나는 여기에 같은 것을 쓰지 않습니다. PHP 매뉴얼의 변경 사항 노트.
계속을위한 변경 로그
Version Description
7.0.0 - continue outside of a loop or switch control structure is now detected at compile-time instead of run-time as before, and triggers an E_COMPILE_ERROR.
5.4.0 continue 0; is no longer valid. In previous versions it was interpreted the same as continue 1;.
5.4.0 Removed the ability to pass in variables (e.g., $num = 2; continue $num;) as the numerical argument.
휴식을위한 변경 내역
Version Description
7.0.0 break outside of a loop or switch control structure is now detected at compile-time instead of run-time as before, and triggers an E_COMPILE_ERROR.
5.4.0 break 0; is no longer valid. In previous versions it was interpreted the same as break 1;.
5.4.0 Removed the ability to pass in variables (e.g., $num = 2; break $num;) as the numerical argument.