国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 網(wǎng)站 > 建站經(jīng)驗(yàn) > 正文

ph_p中smarty變量修飾用法實(shí)例分析

2019-11-02 14:30:39
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

 test.php代碼:

1 2 3 4 5 6 7 8 9 <?php require 'libs/Smarty.class.php'; //包含Smarty類庫(kù)文件 $smarty = new Smarty; //創(chuàng)建一個(gè)新的Smarty對(duì)象 $total = 12345; //對(duì)$total賦值 $smarty->assign("total",$total); //對(duì)模版中的變量賦值 $formatted_total = number_format($total); //格式化$total $smarty->assign("formatted_total",$formatted_total); //對(duì)模版中的變量賦值 $smarty->display('test1.htm'); //顯示頁(yè)面 ?>

test1.html模板代碼:

1 2 3 4 5 6 7 8 9 <html> <head> <title>Smarty Test</title> </head> <body> <H1>Total is {$total}</H1> <H1>Formatted Total is {$formatted_total}</H1> </body> </html>

編譯后的test.html.php代碼:

1 2 3 4 5 6
66影視網(wǎng)[www.aikan.tv/special/66yingshiwang/]
7 8 9 10 11 12 13 <?php /* Smarty version 2.6.22, created on 2009-03-19 14:37:39 compiled from test1.htm */ ?> <html> <head> <title>Smarty Test</title> </head> <body> <H1>Total is <?php echo $this->_tpl_vars['total']; ?> </H1> <H1>Formatted Total is <?php echo $this->_tpl_vars['formatted_total']; ?> </H1> </body> </html>

test1.html模板可以改寫成這樣test2.html:

1 2 3 4 5 6 7 8 9 <html> <head> <title>Smarty Test</title> </head> <body> <H1>Total is {$total}</H1> <H1>Formatted Total is {$total|number_format}</H1> </body> </html>

則相應(yīng)的test.php代碼改為:

1 2 3 4 5 6 7 <?php require 'libs/Smarty.class.php'; //包含Smarty類庫(kù)文件 $smarty = new Smarty; //創(chuàng)建一個(gè)新的Smarty對(duì)象 $total = 12345; $smarty->assign("total",$total); //對(duì)模版中的變量賦值 $smarty->display('test2.htm'); //顯示頁(yè)面 ?>
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 南皮县| 巴彦淖尔市| 扬州市| 化隆| 渝中区| 乌兰察布市| 疏勒县| 安顺市| 增城市| 张北县| 昂仁县| 卫辉市| 拉萨市| 彰化县| 博客| 历史| 平原县| 河南省| 北宁市| 永康市| 沁源县| 久治县| 喀什市| 吐鲁番市| 河西区| 天峨县| 休宁县| 阳信县| 辰溪县| 宁远县| 册亨县| 城固县| 左云县| 海兴县| 黄浦区| 搜索| 霍城县| 嵊州市| 赣榆县| 岳普湖县| 陈巴尔虎旗|