I have installed in my local computer apache 2.4 with PHP 7.1. I enabled curl in my php.ini (extension=php_curl.dll), but for some reason curl is not being loaded even after i enabled it, i made a phhinfo to check, and nothing, i also made a small script:
function isExtensionLoaded($extension_name){
return extension_loaded($extension_name);
}
echo isExtensionLoaded('curl');
And nothing, is blank, what it means is not being loaded, is something missing? Im on Windows 10.
In my case it worked when I also copied nghttp2.dll to Apache bin directory