用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php中curl get/post 例子 (包括https协议)

时间:2015-01-23  来源:西部数据  作者:西部数据

php中curl函数可以实现get与post操作,我们经常使用它来做一些人为模仿操作了,下面我来简单的介绍post与get的例子.

get 方法,代码如下:

  1. $url = "http://www.phpfensi.com /index.php?a=b&c=d&e=f&g=".urlencode('王璐个人博客'); 
  2. $ch = curl_init(); 
  3. curl_setopt($ch, CURLOPT_URL, $url); 
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);    // 要求结果为字符串且输出到屏幕上 
  5. curl_setopt($ch, CURLOPT_HEADER, 0); // 不要http header 加快效率 
  6. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)'); 
  7. curl_setopt($ch, CURLOPT_TIMEOUT, 15); 
  8. $output = curl_exec($ch); 
  9. curl_close($ch); 
  10. var_dump($output); 

post 方法,代码如下:

  1. $url = "http://www.phpfensi.com/index.php"
  2. $params = "a=b&c=d&e=f&g=" . urlencode('王璐个人博客'); 
  3. $ch = curl_init(); 
  4. curl_setopt($ch, CURLOPT_URL, $url); 
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 要求结果为字符串且输出到屏幕上 
  6. curl_setopt($ch, CURLOPT_HEADER, 0); // 不要http header 加快效率 
  7. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)'); 
  8. curl_setopt($ch, CURLOPT_TIMEOUT, 15); 
  9. //开源代码phpfensi.com 
  10. curl_setopt($ch, CURLOPT_POST, 1);    // post 提交方式 
  11. curl_setopt($ch, CURLOPT_POSTFIELDS, $params); 
  12.  
  13. $output = curl_exec($ch); 
  14. curl_close($ch); 
  15. var_dump($output); 

当请求https的数据时,会要求证书,这时候,加上下面这两个参数,规避ssl的证书检查,代码如下:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,FALSE);// https请求 不验证证书和hosts.

curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门