当前位置:首页 > PHP教程 > php应用 > 列表

php用ini_get获取php.ini里变量值的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-15 15:23:53 浏览: 评论:0 

这篇文章主要介绍了php用ini_get获取php.ini里变量值的方法,实例分析了ini_get函数的使用技巧,需要的朋友可以参考下

本文实例讲述了php用ini_get获取php.ini里变量值的方法。分享给大家供大家参考。具体分析如下:

要得到php.ini里的变量值,当然,你可以用phpinfo();来得到所有php配置信息,但如果要想得到某个变量值的话,你又要怎样获取呢?

php里提供一个获取php.ini里的变量值的函数:ini_get()

ini_get()的用法非常简单,下面通过实例说明它是如何使用的。

语法:string ini_get ( string varname )

返回值如果为布尔型则为0或1

实例:

  1. <?php 
  2. /* 
  3. Our php.ini contains the following settings: 
  4. display_errors = On 
  5. register_globals = Off 
  6. post_max_size = 8M 
  7. */ 
  8. echo 'display_errors = ' . ini_get('display_errors') . "\n"
  9. echo 'register_globals = ' . ini_get('register_globals') . "\n"
  10. echo 'post_max_size = ' . ini_get('post_max_size') . "\n"
  11. echo 'post_max_size+1 = ' . (ini_get('post_max_size')+1) . "\n"
  12. echo 'post_max_size in bytes = ' . return_bytes(ini_get('post_max_size')); 
  13. function return_bytes($val) { 
  14.   $val = trim($val); 
  15.   $last = strtolower($val[strlen($val)-1]); 
  16.   switch($last) { 
  17.     // The 'G' modifier is available since PHP 5.1.0 
  18.     case 'g'
  19.       $val *= 1024; 
  20.     case 'm'
  21.       $val *= 1024; 
  22.     case 'k'
  23.       $val *= 1024; 
  24.   } 
  25.   return $val
  26. ?> 

上述代码的运行结果类似如下:

  1. display_errors = 1 
  2. register_globals = 0 
  3. post_max_size = 8M 
  4. post_max_size+1 = 9 
  5. post_max_size in bytes = 8388608 

如果想获取整个php.ini里的变量值,我们可以用ini_get的加强函数 ini_get_all()。

ini_get_all()函数以数组的形式返回整个php的环境变量,用法也很简单。

实例一:

  1. <?php 
  2. print_r(ini_get_all("pcre")); 
  3. print_r(ini_get_all()); 
  4. ?> 

上述代码的运行结果类似如下:

  1. Array 
  2.   [pcre.backtrack_limit] => Array 
  3.     ( 
  4.       [global_value] => 100000 
  5.       [local_value] => 100000 
  6.       [access] => 7 
  7.     ) 
  8.   [pcre.recursion_limit] => Array 
  9.     ( 
  10.       [global_value] => 100000 
  11.       [local_value] => 100000 
  12.       [access] => 7 
  13.     ) 
  14. Array 
  15.   [allow_call_time_pass_reference] => Array 
  16.     ( 
  17.       [global_value] => 0 
  18.       [local_value] => 0 
  19.       [access] => 6 
  20.     ) 
  21.   [allow_url_fopen] => Array 
  22.     ( 
  23.       [global_value] => 1 
  24.       [local_value] => 1 
  25.       [access] => 4 
  26.     ) 
  27.   ... 

实例二:

  1. <?php 
  2. print_r(ini_get_all("pcre", false)); // Added in PHP 5.3.0 
  3. print_r(ini_get_all(null, false)); // Added in PHP 5.3.0 
  4. ?> 

输出结果类似如下:

  1. Array 
  2.   [pcre.backtrack_limit] => 100000 
  3.   [pcre.recursion_limit] => 100000 
  4. Array 
  5.   [allow_call_time_pass_reference] => 0 
  6.   [allow_url_fopen] => 1 
  7.   ... 

与ini_get()相对的函数是ini_set(),ini_set具有更改php.ini设置的功能。例如当某脚本运行超时时,可以设置其最大执行时间。

Tags: ini_get php ini

分享到: