您好,登錄后才能下訂單哦!
MyTpl.class.php
<?phpclass 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>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。