php smarty变量的修饰

test.php代码: view plaincopy to clipboardprint?

<!--p require 'libs/Smarty.class.php'; //包含Smarty类库文件 $smarty = new Smarty; //创建一个新的Smarty对象 $total = 12345; //对$total赋值 $smart-->

assign("total",$total); //对模版中的变量赋值 $formatted_total = number_format($total); //格式化$total $smarty->assign("formatted_total",$formatted_total); //对模版中的变量赋值 $smarty->display('test1.htm'); //显示页面 ?>

<!--p require 'libs/Smarty.class.php'; //包含Smarty类库文件 $smarty = new Smarty; //创建一个新的Smarty对象 $total = 12345; //对$total赋值 $smart-->

assign("total",$total); //对模版中的变量赋值 $formatted_total = number_format($total); //格式化$total $smarty->assign("formatted_total",$formatted_total); //对模版中的变量赋值 $smarty->display('test1.htm'); //显示页面 ?> test1.html模板代码: view plaincopy to clipboardprint?

Total is {$total}

Formatted Total is {$formatted_total}

Total is {$total}

Formatted Total is {$formatted_total}

编译后的test.html.php代码: view plaincopy to clipboardprint?

<!--p /* Smarty version 2.6.22, created on 2009-03-19 14:37:39 compiled from test1.htm */-->

Total is <!--p echo $thi-->_tpl_vars['total']; ?>

Formatted Total is <!--p echo $thi-->_tpl_vars['formatted_total']; ?>

<!--p /* Smarty version 2.6.22, created on 2009-03-19 14:37:39 compiled from test1.htm */-->

Total is <!--p echo $thi-->_tpl_vars['total']; ?>

Formatted Total is <!--p echo $thi-->_tpl_vars['formatted_total']; ?>

test1.html模板可以改写成这样test2.html: view plaincopy to clipboardprint?

Total is {$total}

Formatted Total is {$total|number_format}

Total is {$total}

Formatted Total is {$total|number_format}

则相应的test.php代码改为: view plaincopy to clipboardprint?

<!--p require 'libs/Smarty.class.php'; //包含Smarty类库文件 $smarty = new Smarty; //创建一个新的Smarty对象 $total = 12345; $smart-->

assign("total",$total); //对模版中的变量赋值 $smarty->display('test2.htm'); //显示页面 ?>

<!--p require 'libs/Smarty.class.php'; //包含Smarty类库文件 $smarty = new Smarty; //创建一个新的Smarty对象 $total = 12345; $smart-->

assign("total",$total); //对模版中的变量赋值 $smarty->display('test2.htm'); //显示页面 ?> 浏览器显示: Total is 12345 Formatted Total is 12,345 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/zhuzhao/archive/2009/03/19/4006030.aspx 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/zhuzhao/archive/2009/03/19/4006030.aspx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值