php中smarty變數修飾用法執行個體分析

來源:互聯網
上載者:User

 test.php代碼:

1 2 3 4 5 6 7 8 9 <?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模板代碼:

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

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

1 2 3 4 5 6 7 <?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程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.