亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

湖州市| 弋阳县| 会宁县| 砚山县| 高陵县| 巩留县| 沙坪坝区| 浙江省| 乌兰县| 武胜县| 云霄县| 尉犁县| 上栗县| 绿春县| 翼城县| 荆州市| 蓬安县| 沧州市| 定兴县| 林口县| 曲阜市| 蒙自县| 红原县| 尤溪县| 福鼎市| 根河市| 抚顺市| 油尖旺区| 大荔县| 永善县| 平远县| 县级市| 东阿县| 磐安县| 巧家县| 普兰店市| 垣曲县| 天等县| 甘孜| 林州市| 布拖县|