PHP code example of mitukiti11 / twig_ob_compiler
1. Go to this page and download the library: Download mitukiti11/twig_ob_compiler 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/ */
mitukiti11 / twig_ob_compiler example snippets
:index.php
use Mitts11\Twig\TwigObCompiler;
// g_Environment */
$twig = $container->get('twig');
// set TwigObCompiler
$twig->setCompiler(new TwigObCompiler($twig));
// render
$twig->display('index.html.twig', array('sleeping' => new class {
public function __toString () {
sleep(1);
return "wake!!!";
}
}));