語法
string ini_get ( string varname )
返回值如果為布爾型則為0或1
例:
<?php 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+1 = ' . (ini_get('post_max_size')+1) . "\n"; echo 'post_max_size in bytes = ' . return_bytes(ini_get('post_max_size')); ?> |
ini_get_all()函式以數組的形式返回整個php的環境變數
用法也很簡單
<?php $ini = ini_get_all(); print_r($ini); ?> |
ini_set具有更改php.ini設定的功能。此函式接收兩個參數:需要調整的配置變數名,以及變數的新值。
例如,在某腳本出現時增加最大執行時間(maximum execution time):
<?php ini_set('max_execution_time', 600) // more code ?> |