a6e6s/rassd-qr-parser
Composer 安装命令:
composer require a6e6s/rassd-qr-parser
包简介
A PHP parser for RASSD GS1 QR codes
README 文档
README
A simple PHP library to parse and extract data from RASSD GS1 QR codes.
Installation
You can install the package via Composer:
composer require a6e6s/rassd-qr-parser
Usage
Here is a basic example of how to use the parser.
<?php require __DIR__ . '/vendor/autoload.php'; use A6e6s\RassdQrParser\RassdQrParser; $qr = '01062810860101121727040110114487921215645645465456'; $parser = new RassdQrParser($qr); if ($parser->isValid()) { print_r($parser->toArray()); } else { echo "Failed to parse QR code."; }
License
This package is licensed under the MIT License.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-03