zxing/qr-reader

PHP qr码读取库

v1.2 2020-07-03 07:48 UTC

This package is auto-updated.

Last update: 2024-09-09 11:32:36 UTC


README

#php qr解码器

php识别二维码,不需要安装扩展。我从哪里得到的我也忘了,毕竟已经好几年了。

安装

composer require zxing/qr-reader

使用

include __DIR__.'/vendor/autoload.php';

$qrcode = new \Zxing\QrReader('./qr.png');  //图片路径
$text = $qrcode->text(); //返回识别后的文本
echo $text;

需要

PHP >= 5.3
GD Library