在php中,如果文件A.php include
文件为B.php,我怎样才能(来自B.php)停止导入和退出include。例如,考虑这个伪代码:
a.php只会
print(0);
include "B.php";
print(1);
B.php
print(2);
exit(); // <--- this is to show I want to quit the import...
print(3);
我希望输出为:021
。
有没有人知道如何通过某种函数调用来执行此操作,例如exit
或其他什么?
我不想使用if语句等代码块。
由于