{$hello} or <?=$hello?>

Tagscript-style syntax vs. PHP syntax

Previous versions of ProcessWire, as well as the CMSs that preceded it (like Dictator CMS) used a tagging syntax where you could reference a value in your template using a tag like {$title}. Everywhere that appeared, it would be replaced by the page's title field. It went a lot further than that, but this is a simple example.

As time has gone on, I've come to question the value of this, as {$title} is equivalent to <?=$title?> in PHP syntax. In that case, the tagged version is slightly shorter, but at what cost? When you start to realize the redundancy and inefficiency of the tagged version, it starts to look a lot less attractive. Despite writing such template engines in the past, I always reverted back to PHP syntax for the direct simplicity, and efficiency of it. I didn't want to start down the road of creating a new syntax for people to learn. Especially when I knew I wouldn't use it myself. You don't need to know PHP in order to use its syntax in a template, and much of the PHP syntax you learn is universal and non-proprietary. Tagged syntax seems to be based largely upon a myth.

This becomes more significant as you start working with loops and branches, where the tagged syntax can become significantly more verbose. And then even more significant when you need to manipulate values before output, or work with more complex data types. What you end up with is something like the Smarty template engine... A new language to learn that is more complex than the language it was to replace (PHP).

In ProcessWire, I wanted to be sure that there was a high level of consistency, and lack of ambiguity in the API syntax. I didn't want to end up with a situation where sometimes you would use {$tags} and other times you would use PHP syntax. In my mind, that adds complexity and confusion. Add to that the overhead of another template engine, and I'm convinced that PHP itself is the best possible template engine. ProcessWire is designed with this in mind. That's not to say that we won't add some kind of tag-script for simple shortcuts in the future, but the template engine will always be PHP based.

Latest news

  • ProcessWire Weekly #515
    In the 515th issue of ProcessWire Weekly we’ll check out the latest core updates, new modules, and more. Read on!
    Weekly.pw / 23 March 2024
  • Invoices Site Profile
    The new invoices site profile is a free invoicing application developed in ProcessWire. It enables you to create invoices, record payments to them, email invoices to clients, print invoices, and more. This post covers all the details.
    Blog / 15 March 2024
  • Subscribe to weekly ProcessWire news

“To Drupal, or to ProcessWire? The million dollar choice. We decided to make an early switch to PW. And in retrospect, ProcessWire was probably the best decision we made. Thanks are due to ProcessWire and the amazing system and set of modules that are in place.” —Unni Krishnan, Founder of PigtailPundits