如果存在某种情况,我需要能够完全停止处理文件/页面,例如:
<?php
if ($conditions == "true") {
echo "Condition is true";
}
else {
echo "Condition is not true";
//Command here to completely stop processing all the page;
}
?>
<?php
//nothing else should run here if the aboe condition is not true
?>
<?php
//or this part
?>
所以基本上,如果第一个if else中的条件为false,则不进行进一步处理,包括忽略以下两部分。
可以这样做吗?
如果与die()混淆并从我读过的内容退出,它将只停止第一部分但继续运行
中的第二和第三部分谢谢。