#php qr decoder
php识别二维码, 不需要安装扩展
###使用
include_once('./lib/QrReader.php');
$qrcode = new QrReader('./qr.png'); //图片路径
$text = $qrcode->text(); //返回识别后的文本
echo $text;
需要
PHP >= 5.3
GD Library
欢迎各位兄弟 发布技术文章
这里的技术是共享的
Over 36 million developers use GitHub together to host and review code, project manage, and build software together across more than 100 million projects.
Sign up for free See pricing for teams and enterprises#php qr decoder
php识别二维码, 不需要安装扩展
###使用
include_once('./lib/QrReader.php');
$qrcode = new QrReader('./qr.png'); //图片路径
$text = $qrcode->text(); //返回识别后的文本
echo $text;
PHP >= 5.3
GD Library