如何检查allow_url_fopen是否启用

时间:2012-11-17 18:49:56

标签: php

我正在使用以下代码

echo 'file_get_contents : ', ini_get('allow_url_fopen') ? 'Enabled' : 'Disabled';

这可以启用或禁用

但是我想按函数说明函数名是_isgetcontents

然后我可以将其称为跟随我网站代码中的任何位置

if (_isgetcontents()){
echo "this is enabled"; // will do an action
}else{
echo "this is disabled"; // will do another action
}

〜谢谢

2 个答案:

答案 0 :(得分:55)

使用ini_get()获取某些配置参数的值:

if( ini_get('allow_url_fopen') ) {
   // lucky me...
} 

答案 1 :(得分:1)

您也可以使用此方法

  

phpinfo()函数

检查各种配置。