我將嘗試用註釋代碼解釋我想實現的內容。如果條件符合,則跳過if語句並繼續執行下面的代碼php
我想要做的是跳過if語句,如果條件滿足並繼續執行條件語句之外的代碼。
<?php
if (i>4) {
//if this condition met skip other if statements and move on
}
if (i>7) {
//skip this
?>
<?php
move here and execute the code
?>
我知道break,continue,end和return語句,但這不適用於我的情況。
我希望這可以清除我的問題。
中斷並繼續工作只在循環內。 –
你可以簡單地包裝什麼應該跳過一個else語句?這是我認爲如果 - 其他 - 是有原因的。正如有人早些時候所說的那樣:if(i> 4)和if(i> 7)如何相關。如果他們應該使用if(i> 7)應該是第一個檢查條件。 – Alex