Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 290 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 290 Bytes

#php qr decoder

php识别二维码, 不需要安装扩展

###使用

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

需要

PHP >= 5.3
GD Library