我正在使用以下代码
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
}
几乎与我之前的问题check if allow_url_fopen is enabled or not相同
最佳答案
只需从function退还您现有的支票即可。
function _isCurl(){
return function_exists('curl_version');
}
关于php - 如何检查是否启用了 curl ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13433946/