答案 0 :(得分:6)
您可以使用phps auto_prepend_file
和auto_append_file
指令。
它的工作方式就是在require_once()
(在脚本之前加载)和auto_prepend_file
(在脚本之后加载)指定的文件之间通过auto_append_file
加载服务器上的每个脚本。 / p>
要在.htaccess
中激活:
php_value auto_prepend_file "/path/to/file/before.php"
php_value auto_append_file "/path/to/file/after.php"
或者在php.ini
中(在cgi-mode中运行时需要,影响wole webserver):
auto_prepend_file = "/path/to/file/before.php"
auto_append_file = "/path/to/file/after.php"
<强> before.php 强>
try {
<强> after.php 强>
} catch(Exception $e) {
...
}