中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

開發自己的模板引擎

發布時間:2020-08-16 20:05:20 來源:網絡 閱讀:354 作者:流體石頭 欄目:開發技術

自定義模板引擎類

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>


向AI問一下細節

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

AI

璧山县| 巴林右旗| 开原市| 临朐县| 巨野县| 武胜县| 隆回县| 广东省| 公主岭市| 托克逊县| 丘北县| 东辽县| 平武县| 大城县| 嘉善县| 石门县| 金塔县| 大埔区| 化德县| 二连浩特市| 连城县| 莲花县| 汪清县| 珲春市| 南汇区| 白银市| 扎囊县| 广德县| 寿阳县| 额尔古纳市| 凯里市| 淄博市| 长岛县| 定襄县| 东乡县| 赣州市| 元氏县| 石泉县| 霍山县| 会理县| 灵璧县|