vote up 17 vote down star
7

We are developing a huge website, it will get lots of traffic, right now we are analyzing our options and Smarty looks nice but i have seen lots of flames about this, some love it some hate it. What do you think? Any real life experience with Smarty? If you hate it please write the reasons, same thing if you love it. ;)

Advice about alternatives are welcome.

flag

3  
Why would you need a templating package for a templating language? – Rich B Mar 10 at 15:18
2  
@Rich B: How else do you propose to make templates for the templates?! – Pesto Mar 10 at 15:21
1  
downgrade to PHP 3 if you want people to use it like a templating language – jonstjohn Mar 10 at 15:25
@jonstjohn then again Smarty was created when there were no MVC frameworks for PHP. So with your rationale, you'd have to downgrade to PHP3 also – vartec Mar 10 at 15:30
@vartec that's what I meant. PHP is much more than a templating language, and although it can still be used for that, SQL and functions with side effects can creep in if you're not careful. smarty strips away a lot of that functionality, making it less likely to be abused IMO – jonstjohn Mar 10 at 22:38
show 3 more comments

16 Answers

vote up 32 vote down check

Personally, I've never understood why people feel the need to put a templating language on top of PHP. PHP is already a templating language. Just have some discipline/standards about what you're allowed to use on the "view" pages, and I can't see any reason to add another layer on top of things. I don't like to use anything more complex than if/else-type constructs and simple loops. If there's any processing that needs to be done, it's done before I start outputting anything.

link|flag
2  
Comes down to discipline. work with a team of more than a couple of people and before long queries and strange function calls find their way into your templates. so, long as you are ready to open a can of whup-azz. – jonstjohn Mar 10 at 15:23
Just to achieve Separation of Concerns and not to pollute the global namespace, downloading PHP Savant might be a good idea. – Andy Mar 10 at 15:33
3  
@jonstjohn Use version control and meet the guilty in a dark alley! – Mario Mar 10 at 20:19
1  
@Mario exactly, they don't call that SVN command "blame" for nothing ;-) – vartec Mar 10 at 21:06
@jonstjohn I can put database calls in my smarty templates too... so in that sense it is no different really (you just have to surround them with {pph} {/php}). Not that I do this... But I think I will watch out for the dark alleys now... – SeanJA May 5 at 4:02
vote up 17 vote down

There is several reasons for using Smarty (or any other templating system). Here's a list from the top of my head:

  • Smarty offers you nice syntax. Opening and closing Smarty tags is like doing so with HTML tags. The only difference is {/} instead of </>
  • Smarty syntax is unobtrusive. You don't have to switch PHP and HTML context in your head, whereas using only PHP it happens a lot - all this <?php endif; ?> madness
  • Filters. This is where real power of Smarty lies. Thans to filters you answer to question what and not how. See the following example: {$fileSize|bytes} is easy to read enough to see that I'm outputting file size and apply some filter to it. Whereas in pure PHP I would be doing some if-else hakery thing missing the whole point - what I am actually outputting?
  • More filters. You might have seen on some pages info like "Last seen 3 days ago". In Smarty you could do it just by creating own filter that sits quietly in separate file and does not pollute your template. I use custom |relativeDate filter to do the trick.
  • Security. Create simple |e filter to escape output and prevent XSS attacks. How easy when compared to <?php htmlspecialchars($foo); ?>

The most important thing however is that Smarty lets me save a lot of time. When I look at Smarty template I can instantly see what I am doing. When I look at PHP+HTML I only see how is it done and not what, so I have to re-discover my own code. I can hardly imagine more unproductive activity.

link|flag
1  
Yay filters! Yay clean looking templates! Also, caching can be quite useful. – GloryFish Mar 16 at 20:15
2  
I use smarty simply because of the <?php echo $foo; ?> madness. If the php crowd would be less militant, I'd love to simply: <?= $foo ?> or even use asp tags: <%= %foo %> Nice and clean. – DGM Apr 6 at 21:39
About the security point, Smarty already has a |escape filter. I personally use Smarty because I don't want the designers to start doing random PHP when they have no idea of the security concerns and implications of what they are doing. It's easy in Smarty to allow templates to do only what you allow. – Andrew Moore Jul 17 at 20:48
Gotta diagree on the nice syntax part - The curly brace was a poor choice of delimiter - you have to escape any js with curly braces to avoid smarty parsing it. – Cory House Nov 25 at 17:16
Cory, indeed curly braces are not the most fortunate default choice. But you can easily change it in Smarty config. I for instance tend to use {{ and }} symbols. Apart from that the syntax is actually quite readable. – Michał Słaby Nov 25 at 21:25
vote up 10 vote down

I've been using Smarty for around 5 years now, and I'm rather fond of it for several reasons:

  1. It's sheer elegance - it's much more gratifying to look at a smarty template that's been written some time in the past and continued to function correctly despite changes you may have made to the application (or model & controller in the case of MVC apps), than intermingled php & html classic 'index.php' style development with include statements everywhere. As long as the data supplied to your smarty templates during assignment is of the correct structure, everything should work as you expect it to.

  2. Coming from a JSP background, it's clear that it has been influenced by the JavaServer Tag Libraries (JSTL) which always made sense to me as a means of separating implementation from presentation - and for that matter, it's syntactical consistency with other templating engines.

  3. It is fairly light-weight. I have read many critical statements on how badly it performs in comparison to straight PHP calls. Shocking! Who would have thought an extra layer of software could slow things down?

  4. It is well-maintained and extremely well documented. Until recently, it had it's home on php.net. The documentation can be read through and understood in about an hour. Examples provided per function are so well thought out one can simply copy and paste and change the variable names in many situations.

  5. It can be by-passed - in those odd situations where small numbers of milliseconds make a big difference, don't use Smarty, use pure-PHP instead. Smarty does not have to be switched off, just don't use it!

  6. Smarty is great for AJAXy web apps - create a main page template (your index.tpl) and your usual static implementations of each little section of the main page - e.g. header.tpl, left-nav.tpl, body.tpl, left.tpl, footer.tpl etc. These will render beautifully when the page is called via a standard GET. Need to replace the content of the main page via AJAX, use something like:

        if($request->isXmlHttpRequest()) {
            echo $smarty->fetch('rightbitofpage.tpl');
        } else {   
            $smarty->display('wholepage.tpl'); 
        }
    

    I could rant on for hours about why to use smarty and when not to use it - bottom line, I see it at it's best as being an outstanding technology, and at it's worst as being under-featured when compared to the likes of, say, pure-PHP. I can testify to one thing though, it has never 'hurt' a single application I/We have developed over the years.

Hope that helps!

link|flag
vote up 5 vote down

pros:

  • some designers/templaters know it, and can even implement some logic w/o knowing php

cons:

  • sometimes slow
  • cannot do everything php can

alternatives:

  • zend framework's mvc by default uses phtml views, offering full php functionality on demand. nearly any templater/designer skill level "supported" here.
link|flag
vote up 5 vote down

I really don't see the point. Any MVC framework will give you much better separation of view from logic. And they give you much more flexible cache support. With MVC framework you can cache whole pages, partial views, objects, database results. Thus much more apt for hight traffic website.

And one more thing. Smarty is not PHP, so it's a new syntax that your application developer has to learn. On the other hand I don't think there are lot of ppl, that know Smarty, but don't know PHP.

link|flag
vote up 4 vote down

I've used Smarty for quite a few years now. I'm not attached to Smarty, in and of itself, but appreciate the separation of the view from the other code. Even working on projects by myself, I've found that it has given me a lot more discipline.

When I'm working on projects with a team that includes a dedicated designer, I've found that it is immensely helpful for the designer to be able to modify templates easily on his or her own.

link|flag
vote up 4 vote down

I'm kinda meh about it. The syntax feels cleaner, but I feel like I'm always fighting it to do things I consider very reasonable. There's a certain style of leveraging OOP that adds a lot of power and simplicity to one's code, and Smarty is actively hostile to it; usually it feels like Smarty is only grudgingly willing to allow the indirection operator (->) to exist at all. That annoys me and makes me feel like I'm coding with a hand tied behind my back for no really great reason (since the promised benefit of designers being able to edit templates has yet to come to pass for me, and designers have edited my PHP templates in the past just fine).

|escape:html, |escape:javascript and so on are a lot more pleasing than the zoo of PHP escaping functions, though. (I mean, htmlspecialchars()? Seriously, that's the best name you could think of? Wow, just wow.)

link|flag
Agreed. I usually alias htmlspecialchars output to just h() to make native PHP templating much more pleasant. – bobince Mar 10 at 17:13
vote up 3 vote down

I loved it. I never came across any use cases it didn't cover, and I appreciated what I felt was a very clean syntax. The documentation (http://smarty.net/manual/en/) was good too. I didn't massively like the debugging stuff, but then debugging PHP is never fun.

link|flag
vote up 2 vote down

I'm using Smarty and YES - it is best choice for me now.

link|flag
vote up 0 vote down

We have a fairly large enterprise application that we provide which is 100+ pages in size and we have used smarty on it for the past 4 years. I wouldn't recommend it, it's basically just a lame version of php. Unless you are specifically working with a design team and they will be working with the templates I would recommend staying away from it.

link|flag
vote up 0 vote down

The only reason I need to not use Smarty is that it adds another layer of complexity only for the sake of restricting flexibility. You want neither of these in your software. Smarty is very feature rich. If you don't need all those features then use something simpler.

Here is a more general question (What’s the best way to separate PHP Code and HTML?) about the same problem that references Smarty.

link|flag
vote up 0 vote down

If what you're building will get a lot of traffic the caching functionality of Smarty might be a godsend. As for the syntax and stuff, try making a three page test site and see if you like it: this is highly subjective (I do, somebody else might not).

I've been using it since 2003 at least and I know exactly when I'm happiest at having used it: when maintaining old and long forgotten code. Priceless.

link|flag
vote up 0 vote down

The major advantage of a template language is not to seperate logic from output. The major advantage is to restrict the output to a defined set of possibilities. Smarty allows you to define own blocks and template-functions so you can create your own "controls".

My template for a tabbed form (including some fields with onblur- and onsubmit-validation) look similar to this:

{form id=$item->Guid action=$controller->requester->create(3)}
    {tabs}
    	{tab label="Data"}
    		{fieldset}
    			{field label="Type"}
    				{include file="core/control/input/select.tpl" id="Type" options=$controller->getTypes() selected=$item->Type default="0"}
    			{/field}
    			{field label="Date"}
    				{include file="core/control/input/date.tpl" id="Date" value=$item->Date validate="isDate()"}
    			{/field}
    			{field label="Image"}
    				{include file="core/control/input/image.tpl" id="Image" value=$item->Image mode="simple" validate=""}
    			{/field}
    			{field label="Title"}
    				{include file="core/control/input/text.tpl" id="Name" value=$item->Name validate="min(3);max(255)"}
    			{/field}
    			{field label="Description"}
    				{include file="core/control/input/textarea.tpl" id="Body" value=$item->Body validate="notEmpty()"}
    			{/field}
    			{field label="Is Online?"}
    				{include file="core/control/input/checkbox.tpl" id="IsOnline" value="1" checked=$item->IsOnline}
    			{/field}
    		{/fieldset}
    	{/tab}
    	{include file="core/shared/form/tab.metadata.tpl"}
    	{include file="core/shared/form/tab.history.tpl"}
    	{include file="core/shared/form/tab.actions.tpl" id=$item->Guid}
    {/tabs}
    {include file="core/module/form/action.tpl" id=$item->Guid}
{/form}
link|flag
vote up 0 vote down

Calypso is a php clone of the Django Templating Language. A key design feature of the dtl is that context data is imutable once it get's it's way into the template. Essentially it forces you to separate your template (presentation) code from the controller/model. It's pretty intuitive, extendable and easy for designers to deal with.

Whatever decent template system you use it won't affect the performance of your site to a noticeable degree, especially if you are querying lots of tables with lot's of joins etc. Once your templates are developed you can use memcached to cache the template code instead of reading them from hdd with every request.

link|flag
vote up 0 vote down

I prefer to use 'Dwoo', it's just as easy as Smarty but there are more possibilities in Dwoo which aren't supported in Smarty.

Besides that, it's easy to implement it in Zend Framework. And Dwoo has a very good documentation

link|flag
vote up 0 vote down

I also want to underline the great support to gettext

Put something like that in your template: {t}word{/t} prepare the .po file and you are done: you have a multi-language web site. [ok it's a bit more tricky than this but after the first setup you can forget about it]

http://smarty.incutio.com/?page=SmartyGettext

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.