编程语言
首页 > 编程语言> > PHP 7卷曲未加载

PHP 7卷曲未加载

作者:互联网

我已经在我的本地计算机apache 2.4中安装了PHP 7.1.我在我的php.ini(extension = php_curl.dll)中启用了curl,但由于某种原因,即使我启用了curl也没有加载,我做了一个phhinfo来检查,什么都没有,我也做了一个小脚本:

function isExtensionLoaded($extension_name){
    return extension_loaded($extension_name);
}

echo isExtensionLoaded('curl');

没有什么,是空白的,它意味着什么是没有被装载,是缺少什么?我在Windows 10上.

解决方法:

在我的情况下,当我将nghttp2.dll复制到Apache bin目录时,它也有效

标签:apache,php,curl,windows,php-7-1
来源: https://codeday.me/bug/20190713/1453187.html