windows下Call to undefined function curl_init() error问题

windows下Call to undefined function curl_init() error问题

在使用php5的curl库进行get、post请求时,发现调用curl_init()函数出错。找到解决方案,备记一下。

环境:
Window 10 x64、Php 5.6.28、Apache 2.4.25

官网连接 http://php.net/manual/en/curl.installation.php

Move to Windows\system32 folder:
libssh2.dll, php_curl.dll, ssleay32.dll, libeay32.dll

Move to Apache24\bin folder
libssh2.dll

Uncomment extension=php_curl.dll

  1. 在php安装根目录(例如:”D:\Program Files\Php”)和php扩展目录(例如:”D:\Program Files\Php\ext”)下,找到”libssh2.dll”, “php_curl.dll”, “ssleay32.dll”, “libeay32.dll”,拷贝到系统目录:”C:\Windows\System32”

  2. 同时把”libssh2.dll” 拷贝到Apache的bin目录下(例如:”D:\Program Files\Apache24\bin”)。

你可能感兴趣的:(学习笔记)