PHP code example of priotas / twig-qrcode-extension
1. Go to this page and download the library: Download priotas/twig-qrcode-extension library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
priotas / twig-qrcode-extension example snippets
use Priotas\Twig\Extension\QrCode;
$loader = new \Twig_Loader_Filesystem(__DIR__);
$twig = new \Twig_Environment($loader);
$twig->addExtension(new QrCode());
echo $twig->render('index.html.twig');