'How to check if allow_url_fopen is enabled or not [duplicate]
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
}
Solution 1:[1]
you can also use this method
phpinfo()
to check various configurations.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Faiyaz Alam |
