91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP 自定義 Smarty 模板引擎類 高洛峰 細說PHP

發布時間:2020-06-22 21:03:58 來源:網絡 閱讀:409 作者:津沙港灣 欄目:web開發

smarty模板引擎類簡單工作原理

利用Smarty 模板引擎類對模板文件中的變量進行編譯,編譯過程其實就是利用正則表達式翻譯成PHP文件。例如 模板文件中{$title} 利用正則表達式找到并替換成  <?php echo $this->vars['title'];?>

自定義 Smarty 模板引擎類 smarty.class.php頁面

<?php
/*
 * 自定義Smarty模板引擎類
 */
        class Smarty{
            private $vars = array();
            //第一個向模板中分配變量 
            //有兩個參數 一個參數是模板中的變量名,一個時分配給它的變量值
            public function assign($name,$value=null){
                        if($name != ' ')
                                $this->vars[$name]=$value;
            }
            
            //加載指定的模板 并顯示
            //有一個參數是模板的文件名
            public function display($tplname){
                        $comfile = "./comps/".$tplname."_com.php";
                        $tplname = "./templates/".$tplname;
                        //編譯文件不存在 或者模板文件有變化 才需要編譯
                        if(!file_exists($comfile) || filemtime($tplname)>filemtime($comfile)){
                        $html = file_get_contents($tplname);
                        
                        //要替換的部分{title}
                        $reg = '/\{\s*\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\s*\}/';
                        //變量正則表達式[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]* 
                        
                        //替換后的部分<?php echo $this->vars['title'];?>
                        $rep = "<?php echo \$this->vars['\\1'];?>";
                        
                        $newhtml = preg_replace($reg, $rep, $html);    
                        file_put_contents($comfile, $newhtml);
                        }
                        include $comfile;
            }
            
        }

調用模板頁面 index.php

<?php
header('content-type:text/html;charset=utf-8');
/*
 * 模版引擎
 * PHP 超文本預處理腳本語言
 * 自定義模板引擎
 * 
 */
 //包含模板引擎類
 include 'smart.class.php';
 //創建模板引擎對象
 $smarty = new Smarty();
 // 連接數據庫
 //執行SQL語句
 // 這是從數據庫獲取的動態數據,需要在模板中顯示
 $title = "This is a test";
 $content = "This is content ......";
 
 //第一個向模板中分配變量
 $smarty->assign('title', $title);
 $smarty->assign('content', $content);
 var_dump($smarty);
 //加載指定的模板 并顯示
 $smarty->display('c.php');

模板文件頁  c.php頁面

<html>
<head>
<title>{$title}</title>
</head>
<body>
<h2>{$title}</h2>
<div>
{$content}
</div>
</body>
</html>

輸出結果

object(Smarty)[1]  private 'vars' => 
    array (size=2)
      'title' => string 'This is a test' (length=14)
      'content' => string 'This is content ......' (length=22)
This is a test
This is content ......


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贵南县| 景宁| 镇雄县| 中山市| 屏山县| 乐业县| 厦门市| 托克托县| 惠水县| 获嘉县| 桦川县| 教育| 济源市| 辉南县| 龙山县| 左贡县| 上虞市| 鹤壁市| 图木舒克市| 安徽省| 永顺县| 边坝县| 垣曲县| 台北县| 灵台县| 靖边县| 利津县| 万年县| 定陶县| 泾川县| 西峡县| 阿合奇县| 黔西县| 保靖县| 南京市| 阿拉尔市| 枣强县| 许昌县| 隆安县| 岳普湖县| 正阳县|