Thursday, April 12, 2012

PHP vs template engine


I'm currently having a discussion about the choice between php as a template engine versus a template engine on top of php.



What is your choice, and why?



I say, why another template engine, if php is an template engine itself.


Source: Tips4all

17 comments:

  1. I found that when I introduced Smarty, it was fairly straight forward to get web designers to produce HTML with smarty variables. The folks on the programming team now concentrate on more back-end work, that is, the production of the content of the Smarty variables.

    This has shortened the development lifecycle, with work being able to be split between more people, and has ultimately led to better designs.

    ReplyDelete
  2. For template engines:


    Added security for end-user customization. Themes in pure PHP have unconstrained ability to cause harm to a user and their installation. Thus a template engine removes that risk, if it is a good one.
    Ease of use for non-programmers, such as graphic artists or web designers.


    For plain-php:


    The speed of pure PHP cannot be matched by any template engine built atop it.
    The full power of PHP is available to the output, and not just an interpreted or filtered portion.


    I prefer PHP itself if at all possible. And most folks don't want to hack your software by making a custom theme, so it's easy to take a cursory read and investigate its security. That said, I am the "between guy" who does both templating and programming, and even some graphic arts; my skillset differs from a strict programmer and a strict artist/designer.

    ReplyDelete
  3. The following reasons apply:


    Separating your application into templates with an engine makes your application less vulnerable to halting code errors
    Using templates can give you greater flexibility in the future when refactoring because the namespace won't be directly built into the application
    Using templates encourages (forces) developers to keep business logic and code OUT of the presentation layer.
    Using templates it is easier to mock up datasets and pass them to a template engine and get a preview of what the site will look like with data

    ReplyDelete
  4. PHP is not a template engine, but a language that can be used to write templates, or template engines. A template engine is not just a language, but also the programming API that allows the scripts to locate, organize templates or assign the data from the script to them. Pure PHP offers you absolutely nothing - it is just a language. Instead, you should take such libraries, as Zend_View in Zend Framework to comparisons (basically, it works exactly in the same way, as Smarty, except that it uses PHP to write templates). You should ask whether you should use a template engine with PHP or something else as a template language.

    When it comes to templating languages themselves, then well... ordinary loops and conditions are enough to write templates, but this "enough" does not mean that it is easy, comfortable, efficient or flexible. PHP does not offer anything special for template designers, but many "templating languages" (like Smarty) provide just a limited subset of PHP, so I'm not surprised that programmers choose PHP. At least they can write functions and use OOP which is too massive for this (in my opinion), but does work and really helps.

    The point is that custom templating languages are not limited with PHP drawbacks, but their designers unsually do not see it, claiming that "displaying variables and a loop is enough". The possible areas, where templating languages could be much more effective:


    Form displaying and rendering (I haven't seen any framework with PHP as a templating language that provided an easy, flexible and generic system for customizing the form look).
    Understanding the HTML/XML document structure.
    Automatic XSS injection filters.
    Solving various common problems in the presentation layer (i.e. customizing the look of the pagination system, displaying the data in columns etc.)
    Template portability and true separation of the application logic and implementation details from the templates.


    Examples of templating languages that follow this way are mentioned above PHPTAL and Open Power Template 2. Some similar ideas can be also found in TinyButStrong, but unfortunately this template engine is extremely slow.

    ReplyDelete
  5. Using a template engine can be helpful if you have a non-programmer doing the templates. In many cases, the simplified template language can be easier for a non-programmer to pick up than PHP itself.

    That said, I find myself moving away from using templates when it's just me (or me and other developers).

    ReplyDelete
  6. PHP is perfectly suitable for most tasks, but a templating engine can help a project to scale more easily.

    Off the shelf ones like Smarty or PHPTAL are great if you do not have the time to roll your own (and do not require more than they offer). Also, you can fairly easily replace/modify them with your own implementation later on if you find you need something more specialised.

    I've personally had a good experience with PHPTAL, primarily because it keeps out of your way and is simple.

    ReplyDelete
  7. PHP as template engine will not complain when you mix up your HTML syntax. It will let you forget to close tags, mis-nest them, etc.

    PHP's output is not escaped by default, so unless you remember to rigorously add htmlspecialchars() everywhere, your site will have HTML injection (XSS) vulnerabilities.

    <p>Hello <?= $name ?></b>
    <!-- Simple template full of errors -->


    These problems are much worse when you try to generate XHTML properly. It's not that you can't do that with plain PHP - of course you can - but that requires more effort and diligence.

    That's why my recommendation is PHPTAL. OPT2 is OK too.

    ReplyDelete
  8. Savant is what you are looking for. Its a nice wrapper class that allows you to use the PHP operators in your templates instead of interpreting an new template language on top of PHP.

    Pros:

    It makes sense not to add extra work to the system.
    No learning curve for developers
    If you everyone is disciplined then this is the way to go. (Savant)

    Cons:

    Although Savant encourages you to separate properly it doesn't force the developer to separate business logic from development code. I have a rule that should never be broken. You can only output variables, use conditions and loops in your templates. You must never allow a developer to create variables in the template. Unfortunately developers never seem to do this no matter how many times you tell them. So, using a engine like Smarty then becomes worth it because the developers are forced to completely keep business and design apart.

    If I'm doing a project for myself or one that doesn't have many developers I tend to use Savant. If its a project that is much bigger than just me then in the Architecture I'll go for something like Smarty.

    Either way, the separation in the code is important weather you use Savant or Smarty. I'm sure there are other good options out there too.

    ReplyDelete
  9. Well, it's just my opinion, but template engines suck. You have to first understand how the template engine is implemented and then learn how to use it. It seems just wasted time, because PHP alone does it best and offers much more flexibility.

    ReplyDelete
  10. I don't know whether it is due VirtueMart, Joomla or the concept of templates in PHP, but adjusting VirtueMart to your own graphic theme is PURE HELL. (I'm not talking about plain CSS-styling.)

    ReplyDelete
  11. Here you can see an interesting benchmark with charts of template engine vs PHP
    http://www.phpcomparison.net/

    ReplyDelete
  12. The following article sum-up the different points of view about Template Engines for PHP.

    Doing PHP templates of the third kind
    http://www.tinybutstrong.com/article_3rd_kind.html

    ReplyDelete
  13. If I had to spend the time learning a standalone template engine, I would rather spend the time learning a Framework instead. My choice is to go with Zend Framework, which when implemented using an MVC approach, provides you with the power of the framework, along with the native templating capability of PHP itself.

    ReplyDelete
  14. I found building a light-weight template engine in PHP worked best for us. Allows for good code separation, and our graphic designer could learn a few simple rules to follow, but most writes HTML/CSS not PHP. I can write the heavy lifting code without having the think much about the interface.

    ReplyDelete
  15. PHP isn't a templating engine its a scripting language.

    ReplyDelete
  16. My choice for any new project would probably be to simply use the templating capabilities of PHP, possibly in combination with an MVC framework, instead of using another templating engine. After all, for code simplicity or cleanliness of separation, it doesn't really matter whether you have {$myVar} or <?= $myVar ?> in your code. More complex templating features such as conditions, loops, or backend-technologies such as caching can be handled just as well (or better) by PHP or the MVC framework.

    I have used both approaches (with and without a templating engine), but only in personal projects, never in team projects, so perhaps there are compelling arguments for the use of a templating engine in such a setting.

    ReplyDelete
  17. PHP coding features evolved, designing feature are the same, that's why if you work in a team with designers and developer you need a template engine to parallelize the job, and let the designers work with HTML.

    My personal choice is Raintpl, because is lightweight, friendly and fast
    here a benchmark can help you choose (also smarty and savant are nice!):

    http://www.raintpl.com/PHP-Template-Engines-Speed-Test/

    ReplyDelete