vote up 1 vote down star
1

Hi, just wondering if a PHP web framework or templating engine exists, that uses the clean view philosophy used in Lift, the Scala webframework.

In short the clean view philosophy, is that there should be zero code in the views. And that the view should be valid HTML.

I would like to replace a typical piece of PHP code like this:

<ul>
<?php foreach ($addressbook as $name):?>
    <li><?=$name?></li>
<?php endforeach; ?>
</ul>

With a html tag only template like this:

<ul>
    <framework:AddressBookView.listNames>
        <li:name />
    </framework:AddressBookView.listNames>
</ul>

Which would call the listNames method on the AddressBookView class. The listNames method would then take care of repeatedly binding the names from the AddressBook names to the <li:name /> tag.

flag

1 Answer

vote up 2 vote down check

PHPTAL is just such a template engine...

http://phptal.org/

link|flag

Your Answer

Get an OpenID
or

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