使用Yii framework 2.0我想生成一个条形码列表。我试图在互联网上找到Yii framework 2.0的条形码生成器扩展,但没有运气。我确实找到了Yii 1的条形码生成器扩展。
有没有人知道Yii 2.0的任何良好的条形码生成器扩展和良好的文档?
答案 0 :(得分:2)
您访问此链接以获得答案.... http://www.yiiframework.com/extension/yii2-barcode-generator-8-types/
<html><div id="showBarcode"></div></html> <!--This element id should be passed on to options-->
use barcode\barcode\BarcodeGenerator as BarcodeGenerator;
$optionsArray = array(
'elementId'=> 'showBarcode', /* div or canvas id*/
'value'=> '4797001018719', /* value for EAN 13 be careful to set right values for each barcode type */
'type'=>'ean13',/*supported types ean8, ean13, upc, std25, int25, code11, code39, code93, code128, codabar, msi, datamatrix*/
);
echo BarcodeGenerator::widget($optionsArray);