"how to check if curl is enabled or disabled" Code Answer

5

Just return your existing check from a function.

function _isCurl(){
    return function_exists('curl_version');
}
By 961889455-6152eb81276f on September 22 2022

Answers related to “how to check if curl is enabled or disabled”

Only authorized users can answer the search term. Please sign in first, or register a free account.