Untitled
Anonymous
plain_text
08/22/2024 7:07 AM
636 B
18
Indexable
foreach ($order_attendees as $key => $item) {
$barcode = @$item['barcode'];
$qrCode = (new QrCode("$barcode"))
->setSize(250)
->setMargin(5);
$qrCode->writeFile(Yii::$app->basePath . '/web/template/qrcode/' . $barcode . ".png");
}Editor is loading...
Leave a Comment