如何退出php包含功能?

时间:2015-03-15 03:49:36

标签: php

在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语句等代码块。

由于

1 个答案:

答案 0 :(得分:1)

尝试return;而不是退出()。