mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-22 14:34:14 +00:00
11 lines
243 B
PHP
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.'" />';
|