CURL进行传值(post)

header('content-type:text/html;charset=utf-8');
<pre name="code" class="html">function curlPost($url,$data,$method){
	$ch = curl_init();	 //1.初始化
	curl_setopt($ch, CURLOPT_URL, $url); //2.请求地址
	curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);//3.请求方式
	//4.参数如下
	curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);//https
	curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
	curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');//模拟浏览器
	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
	curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
        curl_setopt($ch, CURLOPT_HTTPHEADER,array('Accept-Encoding: gzip, deflate'));//gzip解压内容
        curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
    
	if($method=="POST"){//5.post方式的时候添加数据
		curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
	}
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	$tmpInfo = curl_exec($ch);//6.执行

	if (curl_errno($ch)) {//7.如果出错
		return curl_error($ch);
	}
	curl_close($ch);//8.关闭
	return $tmpInfo;
}
$data=array('name' => '1234');
$url="http://www.sohu.com/";

$method="GET";
$file=curlPost($url,$data,$method);
$file=mb_convert_encoding($file,'UTF-8','GBK');
echo $file;
 

当cookie认证登陆的时候

<?php
	$cookie_file = tempnam('./temp','cookie');
	function weixinPost($url,$data,$method,$setcooke=false,$cookie_file=false){
		$ch = curl_init();	 //1.初始化
		curl_setopt($ch, CURLOPT_URL, $url); //2.请求地址
		curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);//3.请求方式
		//4.参数如下	
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
		curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
		curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
		curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
		
		if($method=="POST"){//5.post方式的时候添加数据	
			curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
		}
		if($setcooke==true){
			curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file);
		}else{
			curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
		}
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
		$tmpInfo = curl_exec($ch);//6.执行

		if (curl_errno($ch)) {//7.如果出错
			return curl_error($ch);
		}
		curl_close($ch);//8.关闭
		return $tmpInfo;
	}
	$data=array('username' => '***','password'=>'***');
	$url="http://www.xinxinj.com/login.php";
	$method="POST";
	$file=weixinPost($url,$data,$method,true,$cookie_file);
	echo $file;
		
	$url="http://www.xinxinj.com/admin.php";
	$method="GET";
	$file=weixinPost($url,$data,$method,false,$cookie_file);
	echo $file;
		
?>
1.cURL介绍  

cURL 是一个利用URL语法规定来传输文件和数据的工具,支持很多协议,如HTTP、FTP、TELNET等。最爽的是,PHP也支持 cURL 库。本文将介绍 cURL 的一些高级特性,以及在PHP中如何运用它。简单来说,curl就是抓取页面的升级版,即支持GET、POST等浏览器行为,从而可以达到一个模拟浏览器操作的目的。

最简单的一个模型就是如下图所示的模型:


2.基本结构  在学习更为复杂的功能之前,先来看一下在PHP中建立cURL请求的基本步骤:  

(1)初始化    curl_init()  

(2)设置变量   curl_setopt() 。最为重要,一切玄妙均在此。有一长串cURL参数可供设置,它们能指定URL请求的各个细节。要一次性全部看完并理解可能比较困难,所以今天我们只试一下那些更常用也更有用的选项。 

(3)执行并获取结果 curl_exec() 

(4)释放cURL句柄 curl_close()

3.cURL实现Get和Post

POST的过程比较复杂一些,但是原理和浏览器提交过程相同,简单来说,就是利用curl直接将用户名和密码(或者其他相应的参数,这个根据post页面具体讨论)提交到post指向的处理页面即可。过程如下图:



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值