Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function whyAreYouDoingThis (string $tmplName, array $params) {
  2. static $twig = null;
  3. if ($twig === null) {
  4. $loader = new Twig_Loader_Filesystem('/path/to/templates');
  5. $twig = new Twig_Environment($loader, array(
  6. 'cache' => '/path/to/compilation_cache',
  7. ));
  8. }
  9.  
  10. echo $twig->render($tmplName, $params);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement