您的位置:首页 > 其它

开发自己的模板引擎

2016-08-27 00:40 411 查看


自定义模板引擎类

MyTpl.class.php

<?php
class MyTpl
{
private $tpl_vars = array();
//分配
public function assign($key,$value){
$this->tpl_vars[$key] = $value;
}
public function display($tpl){
$contents = file_get_contents($tpl);
foreach ($this->tpl_vars as $k => $v){
//替换 将{$name} 替换成真实的数据
$contents = str_replace('{$'."$k".'}',"$v", $contents);
$compile = './templates_c/'.md5('show.html') . '.php';
file_put_contents($compile, $contents);
require $compile;
}
}
}
$tpl = new MyTpl;
$tpl-> assign('name','张四');
$tpl-> display('./template/show.html');


自定义视图

template/show.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
{$name}
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  模板引擎 class