标签: php wamp
我有一个'template.php'文件,我在大多数php文件中手动include - 有没有办法以某种方式自动include一个php文件到我的所有其他文件中?< / p>
include
我找不到任何适合我的例子。
答案 0 :(得分:4)
您可以在目录中添加.htaccess文件并使用以下
.htaccess
php_value auto_prepend_file template.php
您还可以阅读PHP's auto_prepend_file directive Here
PHP's
auto_prepend_file directive