小编给大家分享一下yii2生成二维码的示例,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!
1、通过composer加载
php composer.phar require "2amigos/yii2-qrcode-helper" "*"
或者添加
"2amigos/yii2-qrcode-helper" : "*"
到对应项目的composer.json文件中。
2、编辑/vendor/yiisoft/extensions.php,添加以下代码到数组中
'2amigos/yii2-qrcode-helper' => array ( 'name' => '2amigos/yii2-qrcode-helper', 'version' => '1.0.2.0', 'alias' => array ( '@dosamigos/qrcode' => $vendorDir . '/2amigos/yii2-qrcode-helper/src', ), ),
3、在你的控制器中添加以下代码
use dosamigos\qrcode\QrCode; //引入类 \\ ... public function actionQrcode() { return QrCode::png('http://www.yii-china.com'); //调用二维码生成方法 } public function actionDemo() { return $this->render('index'); }
在你的页面中添加以下代码 (demo/index)
<img src="<?= Url::to(['index/qrcode'])?>" />
访问demo这个方法就能看到一张漂亮的二维码了。
看完了这篇文章,相信你对yii2生成二维码的示例有了一定的了解,想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。