如果条件满足,我试图停止代码执行。我有
if(isset($fileName)){
echo 'no more time!'
//I want my script stops right here and don't excute the codes below...
}
//lots of codes.....
//lots of codes.....
感谢您的帮助!
答案 0 :(得分:1)
为此你可以简单地使用:
exit();
答案 1 :(得分:1)
答案 2 :(得分:1)
您也可以使用此功能:
die();