php5.6开启curl
Posted 向北☆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php5.6开启curl相关的知识,希望对你有一定的参考价值。
1. 打开php安装目录,打开ext目录,是否有php_curl.dll扩展文件,如果没有该扩展文件,请在网上下载此文件。
2. 打开php.ini,找到 ;extension=php_curl.dll, 去掉注释,重启Apache
3. 在php下的ext目录找到libssh2.dll, php_curl.dll, ssleay32.dll, libeay32.dll,将这四个文件复制到windows/system32下。
4. 将libssh2.dll复制到Apahe 下的bin目录下。
5. 打开phpinfo,查看是否有curl模块。
?php $url = "http://www.kuaidi.com/index-ajaxselectcourierinfo-430279591825-zhongtong.html"; // create curl resource $ch = curl_init(); // set url curl_setopt($ch, CURLOPT_URL, $url); // return the transfer as a string curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // $output contains the output string $output = curl_exec($ch); // close curl resource to free up system resources curl_close($ch); echo $output;
参考文档:http://blog.csdn.net/kevinbai_cn/article/details/53066331
http://php.net/manual/zh/curl.installation.php
以上是关于php5.6开启curl的主要内容,如果未能解决你的问题,请参考以下文章
PHP5.6+7代码性能加速-开启Zend OPcache-优化CPU