我正在使用以下代码
echo 'Curl: ', function_exists('curl_version') ? 'Enabled' : 'Disabled';
这可以启用或禁用它
但我想作为函数说函数名是 _iscurl
_iscurl
那么我可以按照我的网站代码中的任意位置来称呼它
if (_iscurl()){ echo "this is enabled"; // will do an action }else{ echo "this is disabled"; // will do another action }
与我先前的问题几乎相同,请检查是否启用了allow_url_fopen
只需从函数中返回现有支票即可。
function _isCurl(){ return function_exists('curl_version'); }