我正在使用以下代码
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
}