PHP简单开启curl的方法(测试可行)[原创]_php技巧

WBOY
Release: 2016-05-16 20:00:09
Original
1150 people have browsed it

本文讲述了PHP简单开启curl的方法。分享给大家供大家参考,具体如下:

一、问题:

windows主机出现“Call to undefined function curl_init”错误提示,没有定义的函数,也就是php还没打开对curl_init函数的支持。

二、解决方法:

需要开启php的curl函数库。具体步骤如下:

① 打开php.ini(通常在C:\Windows\目录下,WampServer一般在类似C:\wamp\bin\php\php5.3.8\的目录下),找到

复制代码 代码如下:
;extension=php_curl.dll
去掉前面的分号“;”

② 检查php.ini的extension_dir值是哪个目录,检查该目录有无php_curl.dll,如果没有的请下载php_curl.dll

③ 再把php目录中的libeay32.dll,ssleay32.dll拷到c:\windows\system32里面

④ 重启下 apache或者iis即可。

使用phpinfo()函数查看配置信息,可见curl已经开启:

更多关于php curl相关内容感兴趣的读者可查看本站专题:《php curl用法总结

希望本文所述对大家PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template