PHP在 win7 64位 旗舰版 报错 Call to undefined function curl_init()

时间:2021-07-24 06:23:38

代码在ubuntu下无缝运行OK

转到我的win7 64位 期间 学习机上 报错: Call to undefined function curl_init()

因为用到curl 远程抓取数据。

所以谷歌之:

总结,win7 64解决方法与win2003不同:

1.extension=php_curl.dll

2.extension=php_openssl.dll  //取消php.ini前面的这2个 注释

3.确保php安装目录下 这libeay32.dll   ssleay32.dll   2个DLL动态库, 已经被复制到 %System%目录下面。  32为就是c:\windows\system32  64为是C:\Windows\SysWOW64

4.确保PHP扩展库下面有php_curl.dll  php_openssl.dll 这2个库DLL。

然后重启APACHE 。 OK