luler/spider_product_info

通过商品链接,简单爬取商品的基本信息,兼容主流电商平台

1.0.0 2021-08-03 07:48 UTC

This package is auto-updated.

Last update: 2024-03-29 04:33:14 UTC


README

通过商品链接,简单爬取商品的基本信息,兼容主流电商平台

助手类列表如下

  • SpiderProductInfoHelper

使用示例

        $spider = new \SpiderProductInfo\SpiderProductInfoHelper([
            'proxy_server' => '121.127.241.235:32081',
        ]);

        $info = $spider->info('https://detail.tmall.com/item.htm?id=631833014942&skuId=4676531095838', true);
        
        dump($info);

输出

array(2) {
  ["name"] => string(70) "姿彩a4打印纸整箱70g 80g复印纸80克a3 5包/箱(2500张) 70gA4"  //商品名称
  ["price"] => float(119)   //商品价格
  ["image"] => float(100) "http://img.alicdn.com/imgextra/i3/3293436601/O1CN010PmYJ61ydJ4BbQG6v_!!3293436601.jpg_430x430q90.jpg"   //商品主图
}