我想在其他php文件中包含php文件,但是我不想在第一个文件中使用include或require函数,例如,我有“ to_include.php”和“ main.php”,那么按常规方式包含是:< / p>
在“ main.php”中:
include('to_include.php');
但是我不想这样做,例如我想要这样的事情:
在“ to_include.php”中:
include_this_file_to('main.php');
或其他任何可以帮助我做到这一点的方式。
注意:我也不想这样做:
在“ third_file.php”中:
include('to_include.php');
include('main.php');
答案 0 :(得分:0)
我很确定没有办法去做你想做的事情。这将需要PHP搜索整个文件系统,以查看是否还有另一个脚本包含相关的include_this_file_to()
调用,这似乎并不实际。
我能想到的最好的方法是使用您的third_file.php
,然后让服务器将main.php
重写为third_file.php
。