程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 動態改變系統ini配置-談php4裡的一些新函數

動態改變系統ini配置-談php4裡的一些新函數

編輯:關於PHP編程

這些函數為
ini_alter — 改變配置參數值
ini_get — 獲得配置參數值
ini_restore — 恢復原始配置參數值
ini_set — 設置配置參數值
例如獲得 include 路徑可以用
print(ini_get("include_path"));
ini_set("include_path","f:");
print(ini_get("include_path"));
ini_restore("include_path");
print(ini_get("include_path"));
ini_set("include_path","f:php2000");
print(ini_get("include_path"));
?>
輸出為(我加上了換行以便於比較)
f:php2000
f:
f:
f:php2000
不知道為何 restore 錯誤??? ???
這樣我們可以在程序裡面隨時改變參數配置值,同時我發現,在再次執行時,系統的默認參數沒有改變,也就是說,改變僅限於當前腳本運行期間。

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