catname/productinfo

通过GS1代码获取产品信息

1.1.1 2022-02-08 06:37 UTC

This package is auto-updated.

Last update: 2024-09-23 13:47:15 UTC


README

通过GS1代码获取产品信息。

作者:张HQ

安装

$ composer require catname/productinfo

用法

use Catname\ProductInfo\ProductInfo;

class example
{
    public function aExample(Request $request)
    {
        $productInfo = new ProductInfo();
        return $productInfo->getProductInfo($request->code);
    }
    
    /**
    * array (size=4)
        'code' => string '06907992512570' (length=14)
        'supplier' => string '内蒙古伊利实业集团股份有限公司' (length=45)
        'name' => string '安慕希希腊风味酸奶205克' (length=33)
        'specs' => string '205克' (length=6)
    */
}

更新

composer update catname/productinfo

许可证

MIT