winniephp 2015-05-25 03:20 采纳率: 0%
浏览 2153

php file_get_contents转curl抓取淘宝属性

以下代码如何改为用 curl来抓取呢?并且以商品的IID保存
function get_shuxing($type,$iid){
if($type=='tmall'){
$text=file_get_contents("http://detail.tmall.com/item.htm?id=$iid");
preg_match('|

    (.*)
|isU',$text, $match);
}elseif ($type=='taobao'){
$text=file_get_contents("http://item.taobao.com/item.htm?id=$iid");
preg_match('|
    (.*)
|isU',$text, $match);
}
$match=$match[0];
$match = iconv('gbk', 'utf-8', $match);
echo $match;
}
  • 写回答

2条回答 默认 最新

  • devmiao 2015-05-25 03:26
    关注
    评论

报告相同问题?