PHP Smarty模版簡(jiǎn)單使用方法

字號(hào):


    本文實(shí)例講述了PHP Smarty模版簡(jiǎn)單使用方法。分享給大家供大家參考,具體如下:
    Index.php:
    require('../libs/Smarty.class.php');
    $smarty = new Smarty;
    // 添加自定義調(diào)節(jié)器
    $smarty->registerPlugin("modifier", "e", "htmlspecialchars");
    $smarty->registerPlugin("modifier", "trim", "trim");
    //$smarty->force_compile = true;
    $smarty->debugging = true;
    $smarty->caching = true;
    $smarty->cache_lifetime = 120;
    //定義標(biāo)識(shí)符
    $smarty->left_delimiter = '{ ';
    $smarty->right_delimiter = ' }';
    //綁定變量
    $smarty->assign("test_html", "<a>haha</a>");
    $smarty->display('index.tpl');
    index.tpl:
    <h1>{ $test_html|e }</h1>
    后記:如何讓VS支持tpl擴(kuò)展名的HTML編輯
    在菜單[工具>選項(xiàng)]中設(shè)置,如下圖:
    名單
    希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。