這些函數為
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 錯誤??? ???
這樣我們可以在程序裡面隨時改變參數配置值,同時我發現,在再次執行時,系統的默認參數沒有改變,也就是說,改變僅限於當前腳本運行期間。