mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-18 14:40:05 +00:00
27 lines
592 B
PHP
27 lines
592 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @filesource custom_output.php
|
|
* @created 24.12.2017
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2017 Smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeExamples;
|
|
|
|
use chillerlan\QRCode\{QRCode, QROptions};
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
|
|
$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s';
|
|
|
|
$options = new QROptions([
|
|
'version' => 5,
|
|
'eccLevel' => QRCode::ECC_L,
|
|
]);
|
|
|
|
$qrOutputInterface = new MyCustomOutput($options, (new QRCode($options))->getMatrix($data));
|
|
|
|
var_dump($qrOutputInterface->dump());
|