PHP templates - with PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T05:06:11Zhttp://stackoverflow.com/feeds/question/163834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163834/php-templates-with-php5PHP templates - with PHPDavid2008-10-02T18:28:09Z2009-08-12T21:04:22Z
<p>Hi,</p>
<p>What's the most elegant templating (preferably in pure PHP!) solution you've seen?</p>
<p>Specifically i'm interested in handling:</p>
<ol>
<li>Detecting in a repeating block whether it's the first or last element</li>
<li>Easy handling of odd/even cases, like a zebra striped table, or similar</li>
<li>Other modulos logic, where you'd do something every n'th time.</li>
</ol>
<p>I'm looking for something that makes this less of a pain:</p>
<pre><code><?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 ?>
</code></pre>
<p>Does it really take the mess above to create something like this below?</p>
<pre><code><ul>
<li class="odd">John</li>
<li class="even">Jack</li>
<li class="odd">Jill</li>
<li class="even">Jason</li>
</ul>
</code></pre>
<p>Is it only me that find the above near hideous? </p>
<p>All those starting and closing of php-tags makes me cringe.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/163849#1638490Answer by Daok for PHP templates - with PHPDaok2008-10-02T18:29:46Z2008-10-02T18:29:46Z<p>I use Modulo like you did in your example all the time.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/163860#1638602Answer by Cruachan for PHP templates - with PHPCruachan2008-10-02T18:32:12Z2008-10-02T18:42:46Z<p>Tiny But Strong</p>
<p><a href="http://www.tinybutstrong.com" rel="nofollow">www.tinybutstrong.com</a></p>
<p>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.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/163869#1638690Answer by tehborkentooth for PHP templates - with PHPtehborkentooth2008-10-02T18:33:11Z2008-10-02T18:33:11Z<p>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.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/163894#1638942Answer by D4V360 for PHP templates - with PHPD4V3602008-10-02T18:39:07Z2008-10-02T18:39:07Z<p>It ain't pure PHP (the templating syntax then), but it works realy nice; <a href="http://www.smarty.net" rel="nofollow">Smarty</a>.</p>
<p>For loops you can do:</p>
<pre><code>
<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>
</code></pre>
http://stackoverflow.com/questions/163834/php-templates-with-php/163896#1638961Answer by roosteronacid for PHP templates - with PHProosteronacid2008-10-02T18:39:18Z2008-10-02T18:39:18Z<p>I've used <a href="http://www.smarty.net/" rel="nofollow">Smarty Template Engine</a> 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.</p>
<p>It's in pure PHP as well.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/164101#1641013Answer by Owen for PHP templates - with PHPOwen2008-10-02T19:24:11Z2008-10-02T19:24:11Z<p>have you considered <a href="http://phptal.motion-twin.com/" rel="nofollow">phptal</a>?. 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.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/164172#1641725Answer by Randy for PHP templates - with PHPRandy2008-10-02T19:40:01Z2008-10-02T19:40:01Z<p>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:</p>
<pre><code><?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);
?>
</code></pre>
<p>Also, if you don't mind using Javascript, <a href="http://jquery.com/" rel="nofollow">Jquery</a> makes things done mod 2 pretty easy (e.g., for zebra striping a table):</p>
<pre><code>$("tr:odd").addClass("odd");
$("tr:even").addClass("even");
</code></pre>
http://stackoverflow.com/questions/163834/php-templates-with-php/165930#1659301Answer by Shabbyrobe for PHP templates - with PHPShabbyrobe2008-10-03T06:44:33Z2008-10-03T06:44:33Z<p><a href="http://www.phpsavant.com/" rel="nofollow">Savant</a> is a lightweight, pure PHP templating engine. Version 2 has a <a href="http://www.phpsavant.com/yawiki/index.php?area=Savant2&page=PluginCycle#" rel="nofollow">cycle</a> 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.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/166958#166958-10Answer by troelskn for PHP templates - with PHPtroelskn2008-10-03T13:47:52Z2008-10-03T14:00:09Z<p>As template engines goes, I really like <a href="http://www.tagarga.com/blok/on/070723" rel="nofollow">makrell</a>. It's kind of like functional programming for templates; Gives you a lot of freedom and expressiveness, without getting overly complicated.</p>
<p>To render your example, the makrell markup could look like this:</p>
<pre><code>{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}
</code></pre>
http://stackoverflow.com/questions/163834/php-templates-with-php/168484#1684843Answer by The Wicked Flea for PHP templates - with PHPThe Wicked Flea2008-10-03T19:27:20Z2008-10-03T19:27:20Z<p>I use <a href="http://phptal.motion-twin.com/" rel="nofollow">PHPTAL</a> 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.</p>
<p>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).</p>
<p><em>PHP Code:</em></p>
<pre>
$tal = new PHPTAL;
$tal->setTemplate('people.htm')
->set('people', array('John', 'Jack', 'Jill', 'Jason'));
echo $tal->execute();
</pre>
<p><em>Template:</em></p>
<pre>
<ul>
<li tal:repeat="person people" tal:content="person">John Doe</li>
</ul>
</pre>
<p><em>Output:</em></p>
<blockquote>
<p><li>John</li><li>Jack</li><li>Jill</li><li>Jason</li></p>
</blockquote>
<p>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 <a href="http://phptal.motion-twin.com/" rel="nofollow">PHPTAL</a> has just about tripled my speed at templating and programming, just by the simplicity (no new syntax to learn like smarty).</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/1004532#10045320Answer by Sam Saffron for PHP templates - with PHPSam Saffron2009-06-17T00:19:27Z2009-06-17T00:19:27Z<p>I have been a fan of HAML for quite a while, it looks like PHP folk have HAML now: see <a href="http://phphaml.sourceforge.net/" rel="nofollow">http://phphaml.sourceforge.net/</a></p>
http://stackoverflow.com/questions/163834/php-templates-with-php/1004554#1004554-1Answer by gahooa for PHP templates - with PHPgahooa2009-06-17T00:31:55Z2009-06-17T00:31:55Z<p><strong>A small help on the looping:</strong></p>
<pre><code><? $b=false; foreach($MyList as $name) { ?>
<li class="row<?= $b=!$b ?>"><?= htmlspecialchars($name); ?></li>
<? } ?>
</code></pre>
<p>By saying <code>$b=!$b</code>, it automatically alternates between true and false. Since false prints as "", and true prints as "1", then by defining css classes <code>row</code> and <code>row1</code>, you can get your altering rows without any trouble.</p>
<p>consider using <code>:first-child</code> css to style the first one differently.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/1053303#10533030Answer by Erik for PHP templates - with PHPErik2009-06-27T17:46:05Z2009-06-27T17:46:05Z<pre><code><?= ($i++ % 2 === 0) ? 'odd' : 'even' ?>
</code></pre>
<p>You're doing it the other way around. Your first item is now called even instead of odd. Use ++$i.</p>
<p>I'm having the same problem. But I think your original solution is the neatest. So I'll go with that.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/1268725#12687250Answer by bytebrite for PHP templates - with PHPbytebrite2009-08-12T21:04:22Z2009-08-12T21:04:22Z<p>How's about <a href="http://us.php.net/xsl" rel="nofollow">XSLT</a>? The only template system that has a standards body behind it. Works the same across programming languages. Learn it once, use it everywhere!</p>