欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php file_get_contents转curl抓取淘宝属性

程序员文章站 2022-05-27 09:32:39
...
phpcurl

以下代码如何改为用 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;
}
相关标签: php curl