标签: php function include global
我做了一个php ErrorHandler,只能使用
include_once( “ErrorHandler.php”);
这需要添加到每个页面,我想使用错误处理程序,我想知道是否有全局函数。所以我可以告诉server / php在每个页面上调用“ErrorHandler.php”,这是否可能,在php的限制范围内?
答案 0 :(得分:1)
您可以使用PHP的auto_prepend_file设置。