{
var $db = array();
var $template;
function getTpl($tpl_name) {
if(empty($tpl_name) || !file_exists($tpl_name))
return false;
$this->template = file_get_contents($tpl_name);
}
function setTpl($key,$val) {
$this->db[$key] = $val;
}
function tplParse() {
foreach($this->db as $find => $replace) {
$this->template = str_replace($find, $replace, $this->template);
}
}
}
и потом для вывода:
require_once('/admin/template.php');
$json = file_get_contents('/admin/data.json');
$obj = json_decode($json);
$parser = new TplParser;
$parser->getTpl('/index.tpl');
$parser->setTpl('{value_1}', $obj->value_1);
$parser->setTpl('{value_2}', $obj->value_2);
$parser->tplParse();
print $parser->template;
Только не просто $parser->setTpl('{value_1}', $obj->value_1); а генерировать строки с данными
а как вы пишите кодом?
Обсуждают сегодня