# php qr decoder **Repository Path**: capitalist/php-qr-decoder ## Basic Information - **Project Name**: php qr decoder - **Description**: php二维码识别, 不需要第三方扩展 - **Primary Language**: PHP - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 31 - **Forks**: 7 - **Created**: 2016-03-10 - **Last Updated**: 2022-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #php qr decoder > php识别二维码, 不需要安装扩展 ###使用 ``` include_once('./lib/QrReader.php'); $qrcode = new QrReader('path/to_image'); //图片路径 $text = $qrcode->text(); //返回识别后的文本 ``` ### 需要 ``` PHP >= 5.3 GD Library ```