{$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 #542
    In the 542nd issue of ProcessWire Weekly we'll check out a couple of new third party modules, a new site of the week, and more. Read on!
    Weekly.pw / 28 September 2024
  • Custom Fields Module
    This week we look at a new ProFields module named Custom Fields. This module provides a way to rapidly build out ProcessWire fields that contain any number of subfields/properties within them.
    Blog / 30 August 2024
  • Subscribe to weekly ProcessWire news

I just love the easy and intuitive ProcessWire API. ProcessWire rocks!” —Jens Martsch, Web developer