php.ini 全站,和htaccess web目录 默认头部和尾部 auto_prepend_file

php.ini

; Automatically add files before PHP document.
; http://php.net/auto-prepend-file
auto_prepend_file = "头部文件地方"

; Automatically add files after PHP document.
; http://php.net/auto-append-file
auto_append_file ="E:/wamp/www/test02/phpstorm/05/footer.php"

Web服务器的配置 

常用.htaccess中设置:灵活,只影响当前目录,不需要重新启动服务器,不需要限权,缺点目录中的每个读取和被解析的文件每次都要被处理,而不是只启动时处理一次,性能有所影响

php_value auto_prepend_file "/08/footer.php"
php_value auto_append_file "/08/footer.php"
原文地址:https://www.cnblogs.com/lemonphp/p/5309604.html