Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个“template.php”文件,我在我include的大部分 php 文件中手动操作 - 有没有办法以某种方式自动include将 php 文件放入我的所有其他文件中?
include
我找不到任何对我有用的例子。
您可以将.htaccess文件添加到目录并使用以下内容
.htaccess
php_value auto_prepend_file template.php
您还可以阅读PHP's auto_prepend_file directive 这里
PHP's
auto_prepend_file directive