added to intro
This commit is contained in:
parent
97c249f01f
commit
169b846419
1 changed files with 6 additions and 0 deletions
|
@ -4,6 +4,12 @@
|
|||
|
||||
A template engine is not necessary with PHP because the language itself can take care of that. But it can make things like escaping values easier. They also make it easier to draw a clear line between your application logic and the template files which should only put your variables into the HTML code.
|
||||
|
||||
A good quick read on this is [ircmaxell on templating](http://blog.ircmaxell.com/2012/12/on-templating.html).
|
||||
|
||||
For this tutorial we will use a PHP implementation of [Mustache](https://github.com/bobthecow/mustache.php).
|
||||
|
||||
Other well known alternatives would be [Twig](http://twig.sensiolabs.org/) or [Smarty](http://www.smarty.net/), but they are both pretty bloated and offer too much functionality for just a template engine.
|
||||
|
||||
to be continued...
|
||||
|
||||
[<< previous](8-dependency-injector.md)
|
Loading…
Reference in a new issue