Foser Posted January 4, 2008 Share Posted January 4, 2008 I'm trying to search for some tutorial sites about this... But I can't seem to find any tutorials! If anyone knows any tutorial sites about php templating. Please post them up. Link to comment https://forums.phpfreaks.com/topic/84471-core-php-templating/ Share on other sites More sharing options...
Daniel0 Posted January 4, 2008 Share Posted January 4, 2008 <?php function render_template($path) { ob_start(); eval('?>' . file_get_contents($path)); $data = ob_get_contents(); ob_end_clean(); return $data; } ?> Something like this? You can always add more advanced features. Link to comment https://forums.phpfreaks.com/topic/84471-core-php-templating/#findComment-430370 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.