Yii2.0實現產生二維碼功能執行個體分享

來源:互聯網
上載者:User
本文主要介紹了Yii2.0實現產生二維碼功能,結合執行個體形式分析了Yii2.0架構產生二維碼所涉及的相關擴充引入步驟與使用方法,需要的朋友可以參考下,希望能協助到大家。

通過composer安裝:

1.下面的方法是通過composer載入

php composer.phar require "2amigos/yii2-qrcode-helper" "*"

或者添加

"2amigos/yii2-qrcode-helper" : "*"

到對應項目的composer.json檔案中

通過歸檔檔案安裝:

不習慣用composer的使用者可以點擊此處本站下載二維碼擴充。

然後解壓,將檔案名稱修改為yii2-qrcode-helper放入vendor/2amigos/目錄下面

編輯/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',    ), ),

用法

在你的控制器中添加一下代碼

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這個方法,就能看到一張漂亮的二維碼了

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.