Files
php-qrcode/examples/image.php
T
2015-12-10 03:39:30 +01:00

11 lines
243 B
PHP

<?php
require_once '../vendor/autoload.php';
use chillerlan\QRCode\Output\QRImage;
use chillerlan\QRCode\QRCode;
$im = (new QRCode('https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s', new QRImage))->output();
echo '<img src="'.$im.'" />';