vote up 5 vote down star
5

Hi,

What's the most elegant templating (preferably in pure PHP!) solution you've seen?

Specifically i'm interested in handling:

  1. Detecting in a repeating block whether it's the first or last element
  2. Easy handling of odd/even cases, like a zebra striped table, or similar
  3. Other modulos logic, where you'd do something every n'th time.

I'm looking for something that makes this less of a pain:

<?php
$persons = array('John', 'Jack', 'Jill', 'Jason');
?>

<?php $i = 0; ?>
<?php if (isset($persons)): ?>
<ul>
<?php foreach ($persons as $name): ?>
    <li class="<?= ($i++ % 2 === 0) ? 'odd' : 'even' ?>"><?= $name ?></li>
<?php endforeach ?>
</ul>
<?php endif ?>

Does it really take the mess above to create something like this below?

<ul>
    <li class="odd">John</li>
    <li class="even">Jack</li>
    <li class="odd">Jill</li>
    <li class="even">Jason</li>
</ul>

Is it only me that find the above near hideous?

All those starting and closing of php-tags makes me cringe.

flag

60% accept rate
1  
This one has been beaten to death I think. – d03boy Oct 2 '08 at 18:40
1  
Yes, somewhat beyond pining for any fjords it is :) – da5id Oct 2 '08 at 22:52

14 Answers

vote up -10 vote down check

As template engines goes, I really like makrell. It's kind of like functional programming for templates; Gives you a lot of freedom and expressiveness, without getting overly complicated.

To render your example, the makrell markup could look like this:

{ul @ary @var} {{
  <?php if (isset($@ary)): ?>
  <?php $i = 0; ?>
  <ul>
  <?php foreach($@ary as $@var) : ?>
}}

{/ul} {{
  <?php endforeach; ?>
  </ul>
  <?php endif; ?>
}}

{li @var} {{
  <li class="<?= ($i++ % 2 === 0) ? 'odd' : 'even' ?>">
    <?php echo htmlspecialchars($@var); ?>
  </li>
}}

{ul customers cust}
  {li cust}
{/ul}
link|flag
8  
This is total garbage, if code like this come to me in an interview, you'd never get hired – TravisO Dec 10 '08 at 20:50
2  
Indeed, what the hell is this? – The Pixel Developer Jun 17 at 15:15
1  
Are you sh*tting me? This crap is twice as ugly as the original, and a thousand times less likely to be understood by the HTML person who comes along later to update it. – Eli Jun 27 at 18:25
vote up 0 vote down

How's about XSLT? The only template system that has a standards body behind it. Works the same across programming languages. Learn it once, use it everywhere!

link|flag
vote up 0 vote down
<?= ($i++ % 2 === 0) ? 'odd' : 'even' ?>

You're doing it the other way around. Your first item is now called even instead of odd. Use ++$i.

I'm having the same problem. But I think your original solution is the neatest. So I'll go with that.

link|flag
vote up -1 vote down

A small help on the looping:

<? $b=false; foreach($MyList as $name) { ?>
   <li class="row<?= $b=!$b ?>"><?= htmlspecialchars($name); ?></li>
<? } ?>

By saying $b=!$b, it automatically alternates between true and false. Since false prints as "", and true prints as "1", then by defining css classes row and row1, you can get your altering rows without any trouble.

consider using :first-child css to style the first one differently.

link|flag
vote up 0 vote down

I have been a fan of HAML for quite a while, it looks like PHP folk have HAML now: see http://phphaml.sourceforge.net/

link|flag
vote up 3 vote down

I use PHPTAL for templating because it is written in 100% actual HTML with placeholder data, so it even works in a WYSIWYG editor for a web designer. That and it's just way easy to understand.

Here's what it would look like for me. Please forgive the markup, I'm new here and the four spaces block wasn't working right for me (the list was a list, not the markup).

PHP Code:

  $tal = new PHPTAL;
  $tal->setTemplate('people.htm')
      ->set('people', array('John', 'Jack', 'Jill', 'Jason'));
  echo $tal->execute();

Template:

  <ul>
    <li tal:repeat="person people" tal:content="person">John Doe</li>
  </ul>

Output:

  • John
  • Jack
  • Jill
  • Jason
  • Now obviously I wouldn't make a template for this little, but I could use a macro for it or build a whole page and include that variable. But you get the idea. Using PHPTAL has just about tripled my speed at templating and programming, just by the simplicity (no new syntax to learn like smarty).

    link|flag
    1  
    How would you do zebra striping with phptal? I was doing the following, but it looks too verbose: <td tal:condition="repeat/item/odd" tal:content="item" class="odd">item value</td> <td tal:condition="repeat/item/even" tal:content="item" class="even">item value</td> – starmonkey Nov 25 '08 at 4:56
    1  
    Not reading the manual careful enough? ;) phptal.org/manual/de/… <li tal:repeat="name persons" tal:attributes="class php: repeat.name.odd ? 'odd' : 'even'" tal:content="name" /> does the trick. – Vadim Ferderer Jun 27 at 8:36
    vote up 1 vote down

    Savant is a lightweight, pure PHP templating engine. Version 2 has a cycle plugin similar to the Smarty one mentioned earlier. I haven't been able to find a reference to the same plugin in version 3, but I'm sure you could write it fairly easily.

    link|flag
    vote up 5 vote down

    You don't need to open the tags more than once. You can also make a function out of it if you do the same thing multiple times:

    <?php
    function makeul($items, $classes) {
      $c = count($classes);
      $out = "";
    
      if (isset($items) && count($items) > 0) {
        $out = "<ul>\n";
        foreach ($items as $item) {
          $out .= "\t<li class=\"" . $classes[$i++%$c] . "\">$item</li>\n";
        }
        $out .= "</ul>\n";
      }
      return $out;
    }
    ?>
    
    other page content
    
    <?php
    $persons = array('John', 'Jack', 'Jill', 'Jason');
    $classes = array('odd', 'even');
    print makeul($persons, $classes);
    ?>
    

    Also, if you don't mind using Javascript, Jquery makes things done mod 2 pretty easy (e.g., for zebra striping a table):

    $("tr:odd").addClass("odd");
    $("tr:even").addClass("even");
    
    link|flag
    Totally agree with you here - no need to overcomplicate the solution when PHP already offers itself as a templating language. You can drop the 'classes' argument (at least in the default case) since the classes will normally be 'odd' + 'even'. – Bobby Jack Nov 4 '08 at 10:50
    well, the function is written more generic so you can also pass more than two alternatives for classes. as you can see, modulo is taken according to count($classes). – tharkun Dec 8 '08 at 9:56
    99%: "\"" . htmlspecialchars($classes[$i++%$c] . "\">" . htmlspecialchars($item) / "</li>\n"; – jmucchiello Jan 9 at 3:23
    vote up 3 vote down

    have you considered phptal?. one main benefit of it (or something similar) is that you get templates which can pass validation. most php template engines seem to ignore this.

    link|flag
    Can't vouch for phptal, but having used another implementation of TAL in the past, it's a solid templating language. – Sean McSomething Jun 17 at 0:49
    vote up 1 vote down

    I've used Smarty Template Engine in the past. It's Pretty solid. And as you can probably tell from the website; it has quite the large user-base and is updated regularly.

    It's in pure PHP as well.

    link|flag
    vote up 2 vote down

    It ain't pure PHP (the templating syntax then), but it works realy nice; Smarty.

    For loops you can do:

    
    <ul>
    {foreach from=$var name=loop item=test}
      {if $smarty.foreach.loop.first}<li>This is the first item</li>{/if}
      <li class="{cycle values="odd,even"}">{$var.name}</li>
      {if $smarty.foreach.loop.last}<li>This was the last item</li>{/if}
    {/foreach}
    </ul>
    
    link|flag
    1  
    I know it's popular, but I think Smarty is one of the worst public libraries ever. – Peter Bailey Oct 2 '08 at 19:02
    1  
    And why is it one of the worst public libraries? – D4V360 Oct 2 '08 at 19:26
    1  
    I don't have enough space in these comments to write a real answer, but basically because it's a complete other language, and there are many things wrong with that. Maintainability, performance, transferrability, etc. It's just not a development approach I agree with. – Peter Bailey Oct 2 '08 at 19:47
    1  
    And that example looks absolutely terrible! I'll take: "<?php ul($users); ?>" any day. – Bobby Jack Nov 4 '08 at 10:52
    1  
    -1 agreed. Smarty is evil. It just forces you to use two scrippting languages in the same page. There are better ways – Cruachan Feb 5 at 21:30
    show 1 more comment
    vote up 0 vote down

    If what cringes you is the opening and closing tags, write a function that creates the html string and then have it return it. At least it will save you some tags.

    link|flag
    vote up 2 vote down

    Tiny But Strong

    www.tinybutstrong.com

    It doesn't make the smarty mistake of embedding another macro language in the page, but does allow you to handle every practical web display issue I've ever thrown at it. In particular the above odd/even constructs are a doddle.

    link|flag
    vote up 0 vote down

    I use Modulo like you did in your example all the time.

    link|flag

    Your Answer

    Get an OpenID
    or

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