熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP最常用的ini函數

2022-06-13   來源: PHP編程 

  針對PHP配置文件 PHP最常用的ini函數

  php的配置函數就是幾個ini_*的函數主要是針對配置文件的操作其實就四個函數ini_getini_setini_get_allini_restore個人感覺最有用的就是ini_set和ini_get

  * ini_get()獲取配置文件的選項值

  這個函數相信很多人都使過就是獲取配置文件中某一個選項的值如果是true值就返回如果是false值就返回字符串就返回字符串

  比如手冊中的例子

   <?php
/*
Our phpini contains the following settings:

display_errors = On
register_globals = Off
post_max_size = M
*/
echo display_errors = ini_get(display_errors) "n"; //顯示錯誤是否打開
echo register_globals = ini_get(register_globals) "n";//全局變量是否打開
echo post_max_size = ini_get(post_max_size) "n";//最多能提交的文件大小
echo post_max_size+ = (ini_get(post_max_size)+) "n";
?>

  輸出

   display_errors =
register_globals =
post_max_size = M
post_max_size+ =

  這個函數主要是為了獲取配置文件可以方便你很多操作比如你想操作字符串過濾但是又不清楚magic_quotes_gpc有沒有打開所以你就可以這樣寫一個函數

   /* 字符串過濾函數 */
function stringFilter($str)
{
if (ini_get(magic_quotes_gpc)) {
return $str;
} else {
return addslashes($str);
}
}

  當然如果你無法知道你的全局變量是否打開也可以定制這樣的函數

   /* 變量檢測函數 */
function getGetVar($var)
{
if (ini_set(register_gobals)) {
return $var;
} else {
return $_GET[var];
}
}

  當然你可以做很多用途自己慢慢體會

  * ini_set函數設置phpini中的某些變量值

  這個函數是設置選項中的值在執行函數後生效腳本結束的時候這個設置也失效不是所有的選項都能被改函數設置的具體那些值能夠設置可以查看手冊中的列表

  就是能夠設置phpini中的選項值比如display_error選項關閉了但是你要顯示程序中的錯誤信息方便你調試程序那麼就可以使用這個函數

   ini_set("display_errors" "On");

  那麼在你這個頁面的程序都會顯示錯誤信息了而且你還可以使用error_reporting來設置顯示的錯誤信息級別

  如果你需要增加腳本執行時間那麼可以設置

   ini_set("max_execution_time" "");

  那麼腳本執行時間就由默認的秒變為當然你也可以使用set_time_limit()來設置

  其實你把ini_set和ini_get結合使的話非常好比如你想在配置文件裡添加自己的包含文件路徑但是你有沒有權限更改phpini那麼你可以結合兩個函數

   ini_set(include_pathini_get(include_path):/your_include_dir:);

  * ini_get_all: 獲取所有的設置選項變量

  把所有選項值以數組的形式返回lian素材方便你當phpinfo()無法使用的時候來使用

  手冊例子比如

   <?php
$inis = ini_get_all();

print_r($inis);

?>

  部分輸出

   Array
(
[allow_call_time_pass_reference] => Array
(
[global_value] =>
[local_value] =>
[access] =>
)
[allow_url_fopen] => Array
(
[global_value] =>
[local_value] =>
[access] =>
)

)

  * ini_restore: 回復配置文件默認的值

就是回復配置文件默認的值當你使用ini_set設置後可以使用它來恢復


From:http://tw.wingwit.com/Article/program/PHP/201311/21160.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.