真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何實(shí)現(xiàn)smarty簡(jiǎn)單模板變量輸出-創(chuàng)新互聯(lián)

本篇內(nèi)容介紹了“如何實(shí)現(xiàn)smarty簡(jiǎn)單模板變量輸出”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司,成都做網(wǎng)站公司-創(chuàng)新互聯(lián)公司已向數(shù)千家企業(yè)提供了,網(wǎng)站設(shè)計(jì),網(wǎng)站制作,網(wǎng)絡(luò)營(yíng)銷等服務(wù)!設(shè)計(jì)與技術(shù)結(jié)合,多年網(wǎng)站推廣經(jīng)驗(yàn),合理的價(jià)格為您打造企業(yè)品質(zhì)網(wǎng)站。

具體如下:

config.inc.php配置文件如下:

include_once('smarty/Smarty.class.php');
$smarty=new Smarty();
$smarty->config_dir="smarty/Config_File.class.php";
$smarty->caching=false; //是否開(kāi)啟緩存
$smarty->template_dir="./templates"; //模板目錄
$smarty->compile_dir="./templates_c"; //編譯目錄
$smarty->cache_dir="./smarty_cache"; //緩存目錄
$smarty->left_delimiter="<{";
$smarty->right_delimiter="}>";

index.php文件如下:

include('./config.inc.php');
$title="php測(cè)試標(biāo)題";
$content="smarty練習(xí)!";
$newstext[]=array("name"=>"php程序測(cè)試","date"=>"2015-08-01");
$newstext[]=array("name"=>"php視頻教程","date"=>"2015-08-02");
$newstext[]=array("name"=>"smarty學(xué)習(xí)","date"=>"2015-08-03");
$row=array("標(biāo)題","姓名","年齡");
$smarty->assign("title",$title);
$smarty->assign("row",$row);//一個(gè)數(shù)組傳遞多個(gè)值
$smarty->assign("shownewstext",$newstext);//二維數(shù)組傳遞多個(gè)值
$smarty->assign("content",$content);
$smarty->display('index.htm');

運(yùn)行結(jié)果如下:

測(cè)試數(shù)組:標(biāo)題 | 姓名 | 年齡 
--------------------------------------------------------------------------------
測(cè)試內(nèi)容為:smarty練習(xí)! 
循環(huán)新聞內(nèi)容為:
php程序測(cè)試 - 2015-08-01
php視頻教程 - 2015-08-02
smarty學(xué)習(xí) - 2015-08-03

“如何實(shí)現(xiàn)smarty簡(jiǎn)單模板變量輸出”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


文章標(biāo)題:如何實(shí)現(xiàn)smarty簡(jiǎn)單模板變量輸出-創(chuàng)新互聯(lián)
分享路徑:http://weahome.cn/article/djscjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部