vlibTemplate

vLib Logo

3. Motivation

Whilst there are quite a few php template classes out there, few of them support the basic features that are needed to develop full scale applications, like if constructs, loops (known as blocks in other template classes) and the ability to include other template files using a simple html-esque tag.

Any template classes that I've come across have been either lacking in features, or if they did have the features worth using, the syntax was too complicated and not intuitive enough.

This is why vlibTemplate came into being, and why it's more usable than any template system already out there. It has all of the features that you'll need to efficiently seperate your php and html (or whatever else), and it does it in an intuitive manner. It's also extremely quick, as it compiles the template into native php code using using just one pcre call.