重複の可能性:
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 が有効になっているかどうかを確認する前の質問とほぼ同じ