auto_prepend_file与auto_append_file使用方法
2017 年 8 月 4 日
没有评论
php.ini中有两项
auto_prepend_file 在页面顶部加载文件
auto_append_file 在页面底部加载文件
例如:
auto_prepend_file = “/data/start.php”
auto_append_file = “/data/end.php”
修改后重启服务器,这样所有页面的顶部与底部都会require /data/start.php 与 /data/end.php
还有可以在服务上设置,这样不会影响别的项目
apache
php_value auto_prepend_file /data/start.php
php_value auto_append_file /data/end.php
nginx
fastcgi_param PHP_VALUE “auto_prepend_file=/data/start.php”;
fastcgi_param PHP_VALUE “auto_append_file=/data/end.php”;