PHPコードでエラーチェックを実行しているループがあります。もともとはこのようなものでした...
foreach($results as $result) {
if (!$condition) {
$halt = true;
ErrorHandler::addErrorToStack('Unexpected result.');
}
doSomething();
}
if (!$halt) {
// do what I want cos I know there was no error
}
これはすべてうまく機能しますが、1つのエラーが発生した後でも、ループする必要はありません。ループを脱出する方法はありますか?