Currently viewing the tag: "template system"
Today I’ll share a simple template class in php. I did it a while ago and it works fairly good. Objectives: No HTML embebed on PHP code Load a HTML template from file Support loops Replace vars Publish the template Result Template.php <?php class Template{ private $template, $vars; public function __construct($templatePathAndName){ if(file_exists($templatePathAndName)) $this->template = file_get_contents($templatePathAndName); [...]
-
Categories
-
Articles
-
Calendar
Fevereiro 2012 S T Q Q S S D « Dez 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29