程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> auto_prepend_file與auto_append_file的用法

auto_prepend_file與auto_append_file的用法

編輯:PHP綜合

如果需要將文件require到所有頁面的頂部與底部。

第一種方法:在所有頁面的頂部與底部都加入require語句。

例如:

require('header.php');  
頁面內容  
require('footer.php');

但這種方法如果需要修改頂部或底部require的文件路徑,則需要修改所有頁面文件。而且需要每個頁面都加入require語句,比較麻煩。

第二種方法:使用auto_prepend_file與auto_append_file在所有頁面的頂部與底部require文件。

php.ini中有兩項

auto_prepend_file 在頁面頂部加載文件

auto_append_file  在頁面底部加載文件

使用這種方法可以不需要改動任何頁面,當需要修改頂部或底部require文件時,只需要修改auto_prepend_file與auto_append_file的值即可。

例如:修改php.ini,修改auto_prepend_file與auto_append_file的值。

auto_prepend_file = "/home/fdipzone/header.php"  
auto_append_file = "/home/fdipzone/footer.php"

修改後重啟服務器,這樣所有頁面的頂部與底部都會require /home/fdipzone/header.php 與 /home/fdipzone/footer.php

注意:auto_prepend_file 與 auto_append_file 只能require一個php文件,但這個php文件內可以require多個其他的php文件。

如果不需要所有頁面都在頂部或底部require文件,可以指定某一個文件夾內的頁面文件才調用auto_prepend_file與auto_append_file

在需要頂部或底部加載文件的文件夾中加入.htaccess文件,內容如下:

php_value auto_prepend_file "/home/fdipzone/header.php"  
php_value auto_append_file "/home/fdipzone/footer.php"

這樣在指定.htaccess的文件夾內的頁面文件才會加載 /home/fdipzone/header.php 與 /home/fdipzone/footer.php,其他頁面文件不受影響。

使用.htaccess設置,比較靈活,不需要重啟服務器,也不需要管理員權限,唯一缺點是目錄中每個被讀取和被解釋的文件每次都要進行處理,而不是在啟動時處理一次,所以性能會有所降低。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved