I'm using the following code
echo 'file_get_contents : ', ini_get('allow_url_fopen') ? 'Enabled' : 'Disabled';
this can get it enabled or disabled
but I would like to make as function say function name is _isgetcontents
then I can call it as following any where in my website code
if (_isgetcontents()){
echo "this is enabled"; // will do an action
}else{
echo "this is disabled"; // will do another action
}