可能重复:
在 php 中编写函数
我正在使用以下代码
echo 'Curl: ', function_exists('curl_version') ? 'Enabled' : 'Disabled';
这可以启用或禁用它
但我想作为函数说函数名是_iscurl
然后我可以在我的网站代码中的任何位置调用它
if (_iscurl()){
echo "this is enabled"; // will do an action
}else{
echo "this is disabled"; // will do another action
}
几乎与我之前的问题相同,检查 allow_url_fopen 是否启用