12345678910111213 |
- <?php
- require_once '/usr/share/php/Twig/Autoloader.php';
- Twig_Autoloader::register();
- $loader = new Twig_Loader_Filesystem('templates/');
- $twig = new Twig_Environment($loader, array(
- 'cache' => '/tmp/',
- 'auto_reload' => true
- ));
- echo $twig->render('index.tpl', array('url' => array(array("url" => 'http://google.com', "urlTitle" => "google"),
- array("url" => 'http://gmail.com', "urlTitle" => "gmail"),
- array("url" => 'http://mail.ru', "urlTitle" => "Mail RU"),
- )));
|