23
我用下面的代碼如何檢查allow_url_fopen已被激活或不
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
}
〜感謝