怎么在php中使用smarty修饰变量

这篇文章将为大家详细讲解有关怎么在php中使用smarty修饰变量,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

test.php代码:

怎么在php中使用smarty修饰变量

<?php
require'libs/Smarty.class.php';//包含Smarty类库文件
$smarty=newSmarty;//创建一个新的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>SmartyTest</title>
</head>
<body>
<H1>Totalis{$total}</H1>
<H1>FormattedTotalis{$formatted_total}</H1>
</body>
</html>

编译后的test.html.php代码:

<?php/*Smartyversion2.6.22,createdon2009-03-1914:37:39
compiledfromtest1.htm*/?>
<html>
<head>
<title>SmartyTest</title>
</head>
<body>
<H1>Totalis<?phpecho$this->_tpl_vars['total'];?>
</H1>
<H1>FormattedTotalis<?phpecho$this->_tpl_vars['formatted_total'];?>
</H1>
</body>
</html>

test1.html模板可以改写成这样test2.html:

<html>
<head>
<title>SmartyTest</title>
</head>
<body>
<H1>Totalis{$total}</H1>
<H1>FormattedTotalis{$total|number_format}</H1>
</body>
</html>

则相应的test.php代码改为:

<?php
require'libs/Smarty.class.php';//包含Smarty类库文件
$smarty=newSmarty;//创建一个新的Smarty对象
$total=12345;
$smarty->assign("total",$total);//对模版中的变量赋值
$smarty->display('test2.htm');//显示页面
?>

浏览器显示:

Total is 12345Formatted Total is 12,345

关于怎么在php中使用smarty修饰变量就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

发布于 2021-04-03 22:30:34
收藏
分享
海报
0 条评论
166
上一篇:Global和URLReWrite怎么在ASP.NET中使用 下一篇:如何在java中使用内部类
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码