28

我正在使用以下代码

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
}
4

2 回答 2

70

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

if( ini_get('allow_url_fopen') ) {
   // lucky me...
} 
于 2012-11-17T18:51:16.077 回答
2

你也可以使用这个方法

phpinfo()

检查各种配置。

于 2016-08-04T05:54:32.763 回答