PHP templates - with PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T05:06:11Z http://stackoverflow.com/feeds/question/163834 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163834/php-templates-with-php 5 PHP templates - with PHP David 2008-10-02T18:28:09Z 2009-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>&lt;?php $persons = array('John', 'Jack', 'Jill', 'Jason'); ?&gt; &lt;?php $i = 0; ?&gt; &lt;?php if (isset($persons)): ?&gt; &lt;ul&gt; &lt;?php foreach ($persons as $name): ?&gt; &lt;li class="&lt;?= ($i++ % 2 === 0) ? 'odd' : 'even' ?&gt;"&gt;&lt;?= $name ?&gt;&lt;/li&gt; &lt;?php endforeach ?&gt; &lt;/ul&gt; &lt;?php endif ?&gt; </code></pre> <p>Does it really take the mess above to create something like this below?</p> <pre><code>&lt;ul&gt; &lt;li class="odd"&gt;John&lt;/li&gt; &lt;li class="even"&gt;Jack&lt;/li&gt; &lt;li class="odd"&gt;Jill&lt;/li&gt; &lt;li class="even"&gt;Jason&lt;/li&gt; &lt;/ul&gt; </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#163849 0 Answer by Daok for PHP templates - with PHP Daok 2008-10-02T18:29:46Z 2008-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#163860 2 Answer by Cruachan for PHP templates - with PHP Cruachan 2008-10-02T18:32:12Z 2008-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#163869 0 Answer by tehborkentooth for PHP templates - with PHP tehborkentooth 2008-10-02T18:33:11Z 2008-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#163894 2 Answer by D4V360 for PHP templates - with PHP D4V360 2008-10-02T18:39:07Z 2008-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> &lt;ul&gt; {foreach from=$var name=loop item=test} {if $smarty.foreach.loop.first}&lt;li&gt;This is the first item&lt;/li&gt;{/if} &lt;li class="{cycle values="odd,even"}">{$var.name}&lt;/li&gt; {if $smarty.foreach.loop.last}&lt;li&gt;This was the last item&lt;/li&gt;{/if} {/foreach} &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/163834/php-templates-with-php/163896#163896 1 Answer by roosteronacid for PHP templates - with PHP roosteronacid 2008-10-02T18:39:18Z 2008-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#164101 3 Answer by Owen for PHP templates - with PHP Owen 2008-10-02T19:24:11Z 2008-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#164172 5 Answer by Randy for PHP templates - with PHP Randy 2008-10-02T19:40:01Z 2008-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>&lt;?php function makeul($items, $classes) { $c = count($classes); $out = ""; if (isset($items) &amp;&amp; count($items) &gt; 0) { $out = "&lt;ul&gt;\n"; foreach ($items as $item) { $out .= "\t&lt;li class=\"" . $classes[$i++%$c] . "\"&gt;$item&lt;/li&gt;\n"; } $out .= "&lt;/ul&gt;\n"; } return $out; } ?&gt; other page content &lt;?php $persons = array('John', 'Jack', 'Jill', 'Jason'); $classes = array('odd', 'even'); print makeul($persons, $classes); ?&gt; </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#165930 1 Answer by Shabbyrobe for PHP templates - with PHP Shabbyrobe 2008-10-03T06:44:33Z 2008-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&amp;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 -10 Answer by troelskn for PHP templates - with PHP troelskn 2008-10-03T13:47:52Z 2008-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} {{ &lt;?php if (isset($@ary)): ?&gt; &lt;?php $i = 0; ?&gt; &lt;ul&gt; &lt;?php foreach($@ary as $@var) : ?&gt; }} {/ul} {{ &lt;?php endforeach; ?&gt; &lt;/ul&gt; &lt;?php endif; ?&gt; }} {li @var} {{ &lt;li class="&lt;?= ($i++ % 2 === 0) ? 'odd' : 'even' ?&gt;"&gt; &lt;?php echo htmlspecialchars($@var); ?&gt; &lt;/li&gt; }} {ul customers cust} {li cust} {/ul} </code></pre> http://stackoverflow.com/questions/163834/php-templates-with-php/168484#168484 3 Answer by The Wicked Flea for PHP templates - with PHP The Wicked Flea 2008-10-03T19:27:20Z 2008-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> &lt;ul&gt; &lt;li tal:repeat="person people" tal:content="person"&gt;John Doe&lt;/li&gt; &lt;/ul&gt; </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#1004532 0 Answer by Sam Saffron for PHP templates - with PHP Sam Saffron 2009-06-17T00:19:27Z 2009-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 -1 Answer by gahooa for PHP templates - with PHP gahooa 2009-06-17T00:31:55Z 2009-06-17T00:31:55Z <p><strong>A small help on the looping:</strong></p> <pre><code>&lt;? $b=false; foreach($MyList as $name) { ?&gt; &lt;li class="row&lt;?= $b=!$b ?&gt;"&gt;&lt;?= htmlspecialchars($name); ?&gt;&lt;/li&gt; &lt;? } ?&gt; </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#1053303 0 Answer by Erik for PHP templates - with PHP Erik 2009-06-27T17:46:05Z 2009-06-27T17:46:05Z <pre><code>&lt;?= ($i++ % 2 === 0) ? 'odd' : 'even' ?&gt; </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#1268725 0 Answer by bytebrite for PHP templates - with PHP bytebrite 2009-08-12T21:04:22Z 2009-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>