2011年12月7日 星期三

PHP 加入頁首、頁尾

如果想將每個網頁檔,
都加上同樣的頁首、頁尾,
可使用php的auto_prepend_file、auto_append_file設定。

說明:
auto_prepend_file:加上每個檔案前面
auto_append_file:加上每個檔案後面

設定方法如下:
方法一:修改 php.ini 設定
auto_prepend_file = "D:\a.php"
auto_append_file = "D:\b.php"
方法二:修改 .htaccess 設定
php_value auto_prepend_file "D:\a.php"
php_value auto_append_file "D:\b.php"

沒有留言:

張貼留言