Created
June 23, 2011 11:39
-
-
Save v6ak/1042398 to your computer and use it in GitHub Desktop.
Latte example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hello {$name}! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once 'NetteFramework-2.0beta-PHP5.3/Nette-minified/nette.min.php'; // downloaded from http://nette.org/download | |
| use Nette\Latte\Engine as LatteEngine; | |
| $template = (object)array('name'=>'world'); | |
| //$template->parser->addMacro('foo', new IMacroImplementation()); | |
| $name = 'world'; | |
| $latte = new LatteEngine(); | |
| eval('?'.'>'.$latte(file_get_contents('hello.latte'))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment