saurabhsharma / dl-data-extractor
一个简单的类,用于返回驾驶执照信息,例如驾驶员的首名、姓氏、执照号码等。
v1.0.2
2024-03-04 16:50 UTC
Requires
- php: ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2
Requires (Dev)
- pestphp/pest: ^1.22
This package is not auto-updated.
Last update: 2024-09-30 19:42:47 UTC
README
一个简单的类,用于返回驾驶执照信息,例如驾驶员的首名、姓氏、执照号码等。目前仅支持PDF417条形码。
安装
使用 composer
composer require saurabhsharma/dl-data-extractor
您可以在项目中根据需要自由使用。
使用方法
<?php use SaurabhSharma\DLExtractor\DLExtractor; DLExtractor::parse('pdf417-bar-code')->toArray(); // get Response in Array DLExtractor::parse('pdf417-bar-code')->toJson(); // get Response in Json String