码迷,mamicode.com
首页 > Web开发 > 详细

PHP发送POST和GET请求

时间:2015-03-10 19:49:08      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:php 发送post get请求

/**
	 * POST请求
	 * **/
	public static function post($url,$postData) {
		$curl = curl_init();
		curl_setopt($curl, CURLOPT_POST, true);
		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
		curl_setopt($curl,CURLOPT_REFERER,"http://jinrong2.baidu.com");
		curl_setopt($curl,CURLOPT_USERAGENT,"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0");
		curl_setopt($curl, CURLOPT_URL,$url);
		curl_setopt($curl, CURLOPT_POSTFIELDS, $postData);
		$result = curl_exec($curl);
		curl_close($curl);
		return $result;
	}
	/**
	 * GET请求
	 * **/
	public static function getHttp($url){
		$curl = curl_init();
		curl_setopt($curl, CURLOPT_POST, false);
		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
		curl_setopt($curl,CURLOPT_REFERER,"http://jinrong2.baidu.com");
		curl_setopt($curl,CURLOPT_USERAGENT,"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0");
		curl_setopt($curl, CURLOPT_URL,$url);
		$result = curl_exec($curl);
		curl_close($curl);
		return $result;
	}


本文出自 “梦朝思夕” 博客,请务必保留此出处http://qiangmzsx.blog.51cto.com/2052549/1618904

PHP发送POST和GET请求

标签:php 发送post get请求

原文地址:http://qiangmzsx.blog.51cto.com/2052549/1618904

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!