Note: I'm migrating from gonzalo123.com to here. When I finish I'll swap the DNS to here. The "official" blog will be always gonzalo123.com

      PHP Template Engine Comparison. Part 2 (versus Plain PHP)

      In my last post I created a small (and very personal) test of different templating engines in PHP (Smarty, Haanga and Twiw). Someone posted a comment asking for the comparison between those template engines and old school phtml. OK I’ve done some tests. It’s a bit difficult to create the template inheritance (without cloning one of the template engines and creating a new one) so I have one approximation with a simple include. It’s not the same but it’s similar. I’ve also implemented cycle filter (OK I’ve borrowed getCycle function from Twig. Not really implemented ;) )

      Using plain PHP files as template is a big temptation. They’re easy to implement and fast. But you need to take care of security issues. For example if you work together with designers, using a template engine is a good solution. It sandboxes our templates and separates the business logic from the HTML. With plain PHP files is very easy to put business logic within templates.

      Here we are my examples:

      ’'’php <?php /* PHP plain. indexFull.phtml */?>

      <?= $title ?>

      An example with

      Table with rows

      ’’’

      and the PHP:

      $time = microtime(TRUE);
      $mem = memory_get_usage();
       
      define('BASE_DIR', dirname(__file__));
       
      class DirtyTemplateEngine
      {
          protected $_templateDir = null;
          public function __construct($path)
          {
              $this->_templateDir = $path;
          }
       
          function display($template,array $vars) {
              extract($vars);
              ob_start();
       
              function cycle($values, $i)
              {
                  if (!is_array($values) && !$values instanceof ArrayAccess) {
                      return $values;
                  }
       
                  return $values[$i % count($values)];
              }
              include($this->_templateDir . '/' . $template);
              echo ob_get_clean();
          }
      }
       
      $tpl = new DirtyTemplateEngine(BASE_DIR . "/php/templates");
       
      $rows = 50;
      $data = array();
      for ($i = 0; $i < $rows; $i++) {
          $data[] = array('id' => $i, 'name' => "name {$i}");
      }
       
      $tpl->display('indexFull.phtml', array(
          'number' => $rows,
          'title'  => 'php',
          'table'  => $data
      ));
       
      print_r(array('memory' => (memory_get_usage() - $mem) / (1024 * 1024), 'seconds' => microtime(TRUE) - $time));
      

      And with template “inheritance” I know that maybe this test is not comparable with “real” template inheritance

      <?php  /* PHP plain. index.phtml */?>
      <html>
          <head>
              <title><?= $title ?></title>
          </head>
          <body>
              <h2>An example with <?= ucwords(strtolower($title)) ?></h2>
              <b>Table with <?= $number ?> rows</b>
              <?php include 'block.phtml' ?>;
          </body>
      </html>
      
      ?php  /* PHP plain. block.phtml */?>
      <table>
          <?php foreach ($table as $row) { ?>
          <tr bgcolor="<?= cycle(array('#aaaaaa', '#ffffff'), $row['id']) ?>">
              <td><?= $row['id'] ?></td>
              <td><?= $row['name'] ?></td>
          </tr>
          <?php } ?>
      </table>
      
      (50 rows)SmartyTwigHaangaPHP
      Simple templateMemory: 0.684497 Time: 0.023710Memory: 0.598434 Time: 0.025444Memory: 0.124019 Time: 0.004004Mem: 0.026512 Time: 0.001536
      Template InheritanceMemory: 0.685134 Time: 0.023761Memory: 0.619461 Time: 0.028100Memory: 0.133472 Time: 0.005005Mem: 0.026512 Time: 0.001536
      (1000 rows)SmartyTwigHaangaPHP
      Simple templateMemory: 1.222743 Time: 0.094762Memory: 1.033226 Time: 0.196187Memory: 0.558811 Time: 0.043151Mem: 0.576526 Time: 0.028120
      Template InheritanceMemory: 1.194095 Time: 0.090528Memory: 1.054237 Time: 0.191694Memory: 0.646381 Time: 0.044402Mem: 0.537937 Time: 0.043996

      Haanga really rocks again. The performance is very similar than plain PHP templating. Plain PHP is obviously the fastest but Haanga is almost the same. It’s a pity the lack of complete documentation (it’s very hard look into the source code to find features and examples). As Cesar Rodas (Haanga’s developer) told us in a comment Haanga generates self-contained PHP code. Because of that the performance is close to plain PHP execution.

      Another useful links about it here and here.

      comments powered by Disqus