在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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 |
2022-08-18
2022-07-08
2022-08-17
2022-11-06
2022-08-15
请发表评论