curl笔记5

来源:互联网 发布:php获取qq头像 编辑:程序博客网 时间:2024/05/16 05:00
$post="xx";$url = "http://shop.m.taobao.com/shop/shop_auction_search.htm?_input_charset=utf-8"; //查询地址 $ch = curl_init();//新建curlcurl_setopt ($ch, CURLOPT_HEADER,0);curl_setopt($ch, CURLOPT_URL, $url);//url  curl_setopt($ch, CURLOPT_POST, 1);  //postcurl_setopt($ch, CURLOPT_POSTFIELDS, $post);//post内容  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); //页面跳转curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);$m=curl_exec($ch); //输出   curl_close($ch);      echo $m;

实现淘宝的页面跳转,CURLOPT_FOLLOWLOCATION