PHP tag library - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:55:02Zhttp://stackoverflow.com/feeds/question/262652http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/262652/php-tag-library-3PHP tag libraryLeonardo Herrera2008-11-04T17:41:08Z2009-10-03T03:48:05Z
<p>I'm writing a small web app as a side project. It's done in PHP.</p>
<p>Boy, how I loathe PHP.</p>
<p>Well, actually, I don't hate PHP per se. I can't stand HTML intermixed with code. I can barely look at one of those templates without feeling nauseated. I know, when you have an army of "web designers" at your disposal, and you are the only developer, it makes sense to use some templating system. I heard about Smarty a lot. But in my case it has been always the source of yet more work.</p>
<p>Anyways, this time I'm going solo, so I don't want to touch an HTML template with the proverbial pole. So what I'm currently doing looks like this:</p>
<pre><code><?php
$page = new html_page('My wonderful page');
$page->add_contents(new html_tag('p', 'It works', array('id' => 'helloworld', 'class' => 'somecssclass')));
echo $page->render();
?>
</code></pre>
<p>Everything belongs to a nice hierarchy of objects, which is good and dandy. Of course I have a lot of smaller classes, and I'm thinking of using dynamic classes (for example, 'html_a' will automagically create an html_tag object of type 'a'.) </p>
<p>Now, my question: it seems that nobody else is doing this. Why? I'm too far out there, and my feeble, oxygen deprived mind is missing something from the big picture?</p>
<p>(I clearly remember an open source library that did exactly this, but can't find it anymore. So unless I'm actually imagining things, I'm not the only one who thought of this approach to render HTML.)</p>
<p>Do you have any thoughts on this? (please refrain to recommend another language; my favorite language is Perl, so I can <em>outfan</em> you easily :-). I'm stuck with PHP.)</p>
<p><strong>Edit</strong></p>
<p>Uh-uh, seems that I struck a nerve. Some clarifications:</p>
<ol>
<li>I'm the only developer in this project.</li>
<li>How I'm mixing code with HTML? An "html_tag" object from my library is pretty similar to, say, a node in the DOM. The "render" method is the one that creates html (beautifully indented, I must add) but I don't write any opening or closing tag anywhere.</li>
<li>I create small objects for several tasks. These objects have methods to build tag objects; these resulting objects are then inserted into, say, tables or pages.</li>
<li>Did I mention that I'm stuck with PHP?</li>
<li>My library have some primitive access methods to find objects. So the iterator example posted in <a href="http://stackoverflow.com/questions/262652/php-tag-library#262881">26288</a> can be implemented with relative ease.</li>
<li>I'm not worried about performance (yet.) I've always thought that's a really nice problem to have, but I'm not there yet.</li>
</ol>
http://stackoverflow.com/questions/262652/php-tag-library/262672#2626721Answer by Javier for PHP tag libraryJavier2008-11-04T17:45:56Z2008-11-04T17:45:56Z<p>PHP <em>is</em> a template language. therefore, it's natural that all PHP fans are using template-like design.</p>
<p>there are some LISP libraries that do things like you put there. IMHO, this is a big turn-off when i approach LISP languages.</p>
http://stackoverflow.com/questions/262652/php-tag-library/262696#2626969Answer by Owen for PHP tag libraryOwen2008-11-04T17:50:19Z2008-11-04T18:12:42Z<p>Well, the bottom line is, you're still mixing your HTML with your code. If you wanted to change that "p" tag to a "div", you'd have to wander through your code just to do it. Think about what your method offers:</p>
<ul>
<li>mixes code with HTML</li>
<li>adds overhead to parse all the requests</li>
<li>introduces a new "language" over HTML</li>
</ul>
<p>In essence, while the approach may be different, it has the same issues the template languages you are trying to get away from has.</p>
<p>Wouldn't it be easier, if you're working alone (or in a group), to just let PHP be the template language?</p>
<pre><code>$page = new Page('test.html');
$page->load($data);
$page->render();
</code></pre>
<p>and in your test.html "template"</p>
<pre><code><html>
<head>
<title><?php echo $title ?></title>
</head>
<body>
<p><?php echo $hello ?></p>
</body>
</html>
</code></pre>
<p>What other template engines do really is formalize the above code. but if you stick to basics (echoing variables, basic conditionals, looping), you essentially have all the power of a template language, but in familiar PHP, and with no performance overhead.</p>
<p>Plus, unlike your example, you can alter the HTML (i know you didn't want to touch it, but changing a "p" to a "div" in code really isn't that different from change <code><p></code> to <code><div></code>), without having to delve into the code.</p>
http://stackoverflow.com/questions/262652/php-tag-library/262702#2627020Answer by Cruachan for PHP tag libraryCruachan2008-11-04T17:51:07Z2008-11-04T17:51:07Z<p>I know you don't want to hear about templating systems, but if you've only looked at Smarty you're missing the best option. Try Tiny But Strong</p>
<p>www.tinybutstrong.com</p>
<p>Like you I'm the only developer, but I find TBS increases my productivity and the maintainability of my code massively. Unlike smarty it doesn't impose a macro language in the templates and it's completely, 100% compatible with Dreamweaver - the templates really and truly remain as wysiwyg which saves an absolute ton of time.</p>
<p>Being able to write all my code in separate files from the template means it can be formatted and arranged in a standard fashion. Maintenance is a dozy as I always know how my code is structured.</p>
<p>I use TBS with the XAJAX libraries and it works a treat, but you could mix whatever your preferred libraries are with it - I've had it running with Dojo for instance quite nicely and I'm looking at jQuery next up.</p>
http://stackoverflow.com/questions/262652/php-tag-library/262713#2627130Answer by Peter Bailey for PHP tag libraryPeter Bailey2008-11-04T17:53:42Z2008-11-04T17:53:42Z<p>Nobody else is doing it because it's quite a bit more work than just escaping in and out of PHP mode for a template file, not to mention it just adds overhead purely to satisfy your preference for code aesthetics.</p>
<p>This doesn't mean you can separate logic from display, such as a simple system like Owen suggested. But to shy away from the convention of php mixed with HTML just because you don't like it is a little silly - it's how the language was made to be used.</p>
http://stackoverflow.com/questions/262652/php-tag-library/262746#2627462Answer by Roel for PHP tag libraryRoel2008-11-04T18:01:20Z2008-11-04T18:01:20Z<p>I'm not sure what you're talking about. Are you looking for a template library for php? There are plenty, and although it's fashionable to hate on Smarty (just like it's fashionable to hate on php itself), it's a great library.</p>
<p>Are you asking why 'everybody' mixes html in their php code? The answer to that is that only beginnners and idiots do that. Everybody who has real-world php experience uses a template engine.</p>
<p>If you are asking why nobody adds every html tage in code like in your example, well that's obvious: because it's a maintenance nightmare. Are you going to give your code to a designer and tell him good luck with it? Are you going to manually convert every html page to pages and pages of code?</p>
http://stackoverflow.com/questions/262652/php-tag-library/262818#2628182Answer by Dave Sherohman for PHP tag libraryDave Sherohman2008-11-04T18:22:30Z2008-11-04T18:22:30Z<p>So, if I understand correctly, you're saying that you hate having code mixed into your HTML so much that you've decided to mix HTML into your code instead? I fail to see how that improves anything - the code and HTML are still mixed - and it's the less natural/more complex way of approaching PHP, which seems to provide an obvious explanation for why nobody else is doing it.</p>
<p>Use a proper templating system which actually separates the code from the HTML instead of just toying with which one is embedded within the other. I would suggest HTML::Template or Template::Toolkit, since you share my taste for Perl, but you've already said that non-PHP languages aren't viable options.</p>
http://stackoverflow.com/questions/262652/php-tag-library/262881#2628811Answer by Kent Fredric for PHP tag libraryKent Fredric2008-11-04T18:41:11Z2008-11-04T18:41:11Z<p><a href="http://stackoverflow.com/questions/261338/what-is-the-best-way-to-insert-html-via-php">Question 261338</a> has some colinerarity with this, but my response there was more targeted at the php people whom are new to this whole programming "seperation of concerns? whats that?" people. ( sorry php people, largely this is the case )</p>
<p>You could be a good perl player and use perl to generate your html templatey crap that gets loaded in php, I'm still new to perl, but php reeks and I've used it for far too long, surely there has to be a way to write a site in perl that runs on php. </p>
<p>Thirdly, I'd like to see something that does augmentative substitution beyond variables.</p>
<p>Sort of like jQuery style dom matching but without the bloat, java( rhino ), or the whole web browsery thing. </p>
<pre><code>$page = new Page("FakePage.html");
$page->find("div#foobar")->text = "Hahah! I rock" ;
/* Give All H1's a numeric lead in */
foreach( $page->find("h1")->iterator() as $index => $node )
{
$node->text = ($index + 1 ) . ". " $node.text;
};
$page->render();
</code></pre>
<p>I'd really love something that did that nicely and didn't suck too hard. Note my use of structures that probably wont be entirely loved by php. </p>
<p>Dreams are free. </p>
<p>( That is the /only/ syntax that truely seperates design and logic, all the other templatey stuff is just recursively diminishing programming languages ) </p>
<p>The extra cool part here is:</p>
<ol>
<li>No need to santise html, its DOM AWARE! </li>
<li>No need for weird special template markup that sucks and won't work in 90% of editors and can't be validated on its own without bleeding a chicken over it. </li>
</ol>
http://stackoverflow.com/questions/262652/php-tag-library/263329#2633292Answer by troelskn for PHP tag librarytroelskn2008-11-04T20:33:23Z2008-11-04T20:33:23Z<p>Slightly different, but yet similar. I wrote an <a href="http://www.sitepoint.com/blogs/2008/09/25/dom-vs-template/" rel="nofollow">article about using DOM for binding variables to templates</a>. You may find it interesting.</p>
<p>Basic use-case:</p>
<pre><code>$t = new Domling('<p class="hello"></p>');
$t->capture('hello')->bind("Hello World");
echo $t->render();
</code></pre>
<p>Which produces:</p>
<pre><code><p class="hello">Hello World</p>
</code></pre>
http://stackoverflow.com/questions/262652/php-tag-library/266566#2665661Answer by Leonardo Herrera for PHP tag libraryLeonardo Herrera2008-11-05T20:38:05Z2008-11-05T20:38:05Z<p>Well, it seems that people got upset about the "loathe PHP" quote. That's not the intended spirit of the question, sorry if I put your favorite language off.</p>
<p>At the end, there are some really valid points made by several people;</p>
<ol>
<li>The unfortunate naming convention: having the name of the HTML element as the name of the object rings a bell. </li>
<li>I'm reinventing Lisp, and the worst part of it at that.</li>
<li>This is just another template system, and a bad one to boot.</li>
</ol>
<p>The accepted answer for me was the nice article posted by troelskn. I came into the conclusion that I need my own document model, and that I should refrain to use the html entity names on it. As I said before, this is a small side project; that article and some pointers I got from its comments gave me new ideas to explore.</p>
<p>(About the reinventing Lisp part: I'm the only person I know that enjoyed programming the DOM. So there.)</p>
<p>Thank you all for your comments.</p>
http://stackoverflow.com/questions/262652/php-tag-library/435213#4352130Answer by Luiz for PHP tag libraryLuiz2009-01-12T11:56:21Z2009-01-12T11:56:21Z<p>There are very little frameworks for php that do what you want. Try Prado (<a href="http://www.pradosoft.com/" rel="nofollow">http://www.pradosoft.com/</a>) or Yii (<a href="http://www.yiiframework.com/" rel="nofollow">http://www.yiiframework.com/</a>). They support full fledged tag libraries, not just templating systems. You can also check phpframeworks.com, you may find some other framework that does what you need there.</p>
<p>I'm also developing my own framework with support for tag libraries and server-side dom manipulation, but I still need to optimize the code a little bit before publishing anything, this project is under <a href="http://players.sourceforge.net" rel="nofollow">http://players.sourceforge.net</a>.</p>
http://stackoverflow.com/questions/262652/php-tag-library/921935#9219350Answer by Edu for PHP tag libraryEdu2009-05-28T16:43:05Z2009-05-28T16:43:05Z<p>I'm using the xml, xsl approach to develop my forms, using a single xls template to render any form I use in my portal. At the beginning it was little hard to find out the right format of xls file, but after it was done, it was very easy to render my forms. In php I just have to create a XML object and render it.</p>
<p>Obviously, there will be 'special' things that I don't want to render with xls, in that cases I render them the normal way.</p>
<p>I don't like to mix to much thing with php code, that is why I developed this libraries...</p>
http://stackoverflow.com/questions/262652/php-tag-library/1512733#15127330Answer by gord for PHP tag librarygord2009-10-03T03:48:05Z2009-10-03T03:48:05Z<p>I developed a lightweight close to the metal tag lib for many of the same reasons, keeping the flavor Id seen in using lisp to generate HTML.</p>
<p>Overview/sample code here <a href="http://quantblog.wordpress.com/2009/10/01/xilla%5Ftags-php-library-make-html-with-lispy-php-code/" rel="nofollow">xilla_tags</a></p>