成人精品一区二区三区中文字幕-成人精品一区二区三区-成人精品一级毛片-成人精品亚洲-日本在线视频一区二区-日本在线视频免费

導航首頁 ? 技術教程 ? php中smarty變量修飾用法實例分析
全站頭部文字 我要出現在這里
php中smarty變量修飾用法實例分析 792 2023-12-10   

本文實例講述了php中smarty變量修飾用法。分享給大家供大家參考。具體實現方法如下:

test.php代碼:

<?php 
require 'libs/Smarty.class.php'; //包含Smarty類庫文件 
$smarty = new Smarty; //創建一個新的Smarty對象 
$total = 12345; //對$total賦值 
$smarty->assign("total",$total); //對模版中的變量賦值 
$formatted_total = number_format($total); //格式化$total 
$smarty->assign("formatted_total",$formatted_total); //對模版中的變量賦值
$smarty->display('test1.htm'); //顯示頁面 
?>

test1.html模板代碼:

<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代碼:

<?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:

<html> 
  <head> 
    <title>Smarty Test</title> 
  </head> 
  <body> 
    <H1>Total is {$total}</H1> 
    <H1>Formatted Total is {$total|number_format}</H1> 
  </body> 
</html> 

則相應的test.php代碼改為:

<?php 
require 'libs/Smarty.class.php'; //包含Smarty類庫文件
$smarty = new Smarty; //創建一個新的Smarty對象 
$total = 12345; 
$smarty->assign("total",$total); //對模版中的變量賦值 
$smarty->display('test2.htm'); //顯示頁面 
?> 

瀏覽器顯示:

Total is 12345
Formatted Total is 12,345

希望本文所述對大家的php程序設計有所幫助。



主站蜘蛛池模板: 电影名:《被囚禁的人》| 第一财经直播电视直播今日股市| 流浪地球2演员表| 三星报喜| 电子元器件基础知识| 阿尔法变频器说明书| 我的父老乡亲| 故宫博物院思维导图| 廖亚凡| 浙江卫视全天节目表| 爱在记忆中找你歌词| 涩涩免费网站| 进击的巨人2| 我的江南id美人妈妈| 风花电影完整版免费观看| 电影白日梦2| 人流后饮食| 虞书欣新剧永夜星河免费观看| 唐人街探案网剧1| 少年团时代成员| 敖丙手机壁纸| 托尔金| 中国安全生产报| 原来琪琪电影| 战斧骨电影| 等着我主持人| 王瑞儿视频| 121团炮台镇天气预报| 浙江卫视全天节目单| free xxxx japan| 年十二的图片| 小娘惹电视连续剧48集剧情| 还未入团思想汇报800字| 十万个冷笑话第二季| 爱情心心相印| 不要抛弃我| 蓝家宝电影| 永远是少年电影免费观看| 红灯停绿灯行电影观看| superstar电影在线播放| 我的老婆又大肚|

!!!站長長期在線接!!!

網站、小程序:定制開發/二次開發/仿制開發等

各種疑難雜癥解決/定制接口/定制采集等

站長微信:lxwl520520

站長QQ:1737366103