Original PHP QRCode is from http://phpqrcode.sourceforge.net/ writed by [email protected]
I convert it to make it easier to use in Yii framework. Hope useful to you.
- Yii 1.x
- PHP 5.x
- Place this extension in /protected/extensions/qrcode
- In main.php, add the following to 'components':
'qrcode' => array(
'class' => 'ext.qrcode.QRCode',
),
examples
#create text qrcode
Yii::app()->qrcode->create('test');
#create link qrcode
Yii::app()->qrcode->create('http://www.wanzhoumo.com');
#set qrcode size
Yii::app()->qrcode->setSize(6)->create('test');
Modified BSD License https://github.com/jianzhenchen/Yii-QRcode