您好,登錄后才能下訂單哦!
tpl模板引擎怎么在php中使用?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
tpl.php
<?php namespace tpl; /** * Class Tpl */ class Tpl { protected $view_dir;//模板文件 protected $cache_dir;//緩存文件 protected $lifetime;//過期時間 protected $vars = [];//存放顯示變量的數組 /** * Tpl constructor. * @param string $view_dir * @param string $cache_dir * @param string $lifetime */ public function __construct($view_dir='', $cache_dir='', $lifetime='') { //如果模板文件不為空,則設置,為空則為默認值 if (!empty($view_dir)) { if ($this->check_dir($view_dir)) { $this->view_dir = $view_dir; } } //如果緩存文件不為空,則設置,為空時為默認值 if (!empty($cache_dir)) { if ($this->check_dir($cache_dir)) { $this->cache_dir = $cache_dir; } } //如果過期時間不為空,則設置,為空時為默認值 if (!empty($lifetime)) { $this->lifetime = $lifetime; } } /** * 對外公開的方法 * @param string $name * @param string $value */ public function assign($name, $value) { $this->vars[$name] = $value;//將傳入的參數以鍵值對存入數組中 } /** * 測試文件 * @param $dir_path * @return bool */ protected function check_dir($dir_path) { //如果文件不存在或不是文件夾,則創建 if (!file_exists($dir_path) || !is_dir($dir_path)) { return mkdir($dir_path, 0777, true); } //如果文件不可讀或不可寫,則設置模式 if (!is_writable($dir_path) || !is_readable($dir_path)) { return chmod($dir_path, 0777); } return true; } /** * 展示方法 * @param $view_name * @param bool $isInclude * @param null $uri */ public function display($view_name, $isInclude=true, $uri=null) { //通過傳入的文件名,得到模板文件路徑 $view_path = rtrim($this->view_dir, '/') . '/' . $view_name; //判斷路徑是否存在 if (!file_exists($view_path)) { die('文件不存在'); } //通過傳入的文件名得到緩存文件名 $cache_name = md5($view_name . $uri) . '.php'; //緩過緩存文件名得到緩存路徑 $cache_path = rtrim($this->cache_dir, '/') . '/' .$cache_name; //判斷緩存文件是否存在,如果不存在,重新生成 if (!file_exists($cache_path)) { $php = $this->compile($view_path);//解析模板文件 file_put_contents($cache_path, $php);//緩存文件重新生成 } else { //如果緩存文件存在,判斷是否過期,判斷模板文件是否被修改 $is_time_out = (filectime($cache_path) + $this->lifetime) > time() ? false : true; $is_change = filemtime($view_path) > filemtime($cache_path) ? true : false; //如果緩存文件過期或模板文件被修改,重新生成緩存文件 if ($is_time_out || $is_change) { $php = $this->compile($view_path); file_put_contents($cache_path, $php); } } if ($isInclude) { extract($this->vars);//解析傳入變量的數組 include $cache_path;//展示緩存 } } /** * 正則解析模板文件 * @param string $file_name * @return mixed|string */ protected function compile($file_name) { $html = file_get_contents($file_name);//獲取模板文件 //正則轉換數組 $array = [ '{$%%}' => '<?=$\1?>', '{foreach %%}' => '<?php foreach (\1): ?>', '{/foreach}' => '<?php endforeach ?>', '{include %%}' => '', '{if %%}' => '<?php if (\1): ?>', '{/if}' => '<?php endif ?>', '{for %%}' => '<?php for (\1): ?>', '{/for}' => '<?php endfor ?>', '{switch %%}' => '<?php switch (\1) ?>', '{/switch}' => '<?php endswitch ?>' ]; //遍歷數組,生成正則表達式 foreach ($array AS $key=>$value) { //正則表達式, $pattern = '#' . str_replace('%%', '(.+?)' , preg_quote($key, '#')) . '#'; if (strstr($pattern, 'include')) { $html = preg_replace_callback($pattern, [$this, 'parseInclude'], $html); } else { $html = preg_replace($pattern, $value, $html); } } return $html; } /** * 處理include表達式 * @param array $data * @return string */ protected function parseInclude($data) { $file_name = trim($data[1], '\'"'); $this->display($file_name, false); $cache_name = md5($file_name) . '.php'; $cache_path = rtrim($this->cache_dir, '/') . '/' . $cache_name; return '<?php include "'.$cache_path.'" ?>'; } }
user_tpl,,,,從數據庫中取值,作為參數傳到模板文件,再解析模板文件
<?php include './sql/pdo.sql.php'; include 'tpl.php'; $tpl = new tpl\Tpl('./view/', './cache/', 3000); $link = new pdo_sql(); $dat = ['menu_name', 'menu_url']; $res = $link->table('blog_menu')->field($dat)->order('id ASC')->select(); $tpl->assign('menu', $res); $tpl->display('index.html');
看完上述內容,你們掌握tpl模板引擎怎么在php中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。