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

转载于:https://www.cnblogs.com/wgq123/p/7450667.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值