Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Michal Tatarynowicz http://notnotes.com/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Simplest possible PHP templating engine

// This code takes a template name and an array of variables
// and parses them with a file
//
// Example:
// print template('hello', array('who'=>'world'));
//
// Template (/templates/hello.html)
// Hello <?=$who?>!
//
// Outputs:
// Hello world!

define('DIR_TEMPLATES', dirname(__FILE__).'/templates');

function template($__name__, $__data__=array()) {
	extract($__data__);
	ob_start();
	require(DIR_TEMPLATES.'/'.$__name__.'.html');
	return ob_get_clean();
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS