打破 if 和 foreach
P粉651109397
P粉651109397 2023-08-28 11:32:39
0
2
638
<p>我有一个 foreach 循环和一个 if 语句。如果找到匹配项,我需要最终突破 foreach。</p> <pre class="brush:php;toolbar:false;">foreach ($equipxml as $equip) { $current_device = $equip->xpath("name"); if ($current_device[0] == $device) { // Found a match in the file. $nodeid = $equip->id; <break out of if and foreach here> } }</pre> <p><br /></p>
P粉651109397
P粉651109397

全部回复(2)
P粉564192131
foreach($equipxml as $equip) {
    $current_device = $equip->xpath("name");
    if ( $current_device[0] == $device ) {
        // found a match in the file            
        $nodeid = $equip->id;
        break;
    }
}

只需使用break。这样就可以了。

P粉729436537

if 不是循环结构,因此您无法“打破它”。

但是,您可以通过简单地调用 break 来突破 foreach 。在您的示例中,它具有预期的效果:

$device = "wanted";
foreach($equipxml as $equip) {
    $current_device = $equip->xpath("name");
    if ( $current_device[0] == $device ) {
        // found a match in the file            
        $nodeid = $equip->id;

        // will leave the foreach loop immediately and also the if statement
        break;
        some_function(); // never reached!
    }
    another_function();  // not executed after match/break
}

只是为了让其他偶然发现此问题并寻求答案的人保持完整。

break 采用可选参数,定义有多少 它应该打破的循环结构。示例:

foreach (['1','2','3'] as $a) {
    echo "$a ";
    foreach (['3','2','1'] as $b) {
        echo "$b ";
        if ($a == $b) { 
            break 2;  // this will break both foreach loops
        }
    }
    echo ". ";  // never reached!
}
echo "!";

结果输出:

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板