标签: php include require
在运行任何其他文件之前,我可以在 php.ini 中更改包含php文件的内容吗?相当于在每个文件之前添加“require('somefile.php');”?
答案 0 :(得分:6)
您可以使用auto_prepend_file directive.
auto_prepend_file
答案 1 :(得分:2)
在php.ini中搜索auto_prepend_file = [path/to/file]。将[path/to/file]替换为您的文件
auto_prepend_file = [path/to/file]
[path/to/file]