码迷,mamicode.com
首页 > 其他好文 > 详细

变量调节器

时间:2016-06-06 00:57:16      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

如何引用变量调节器:

<{$ | }>

例题:

main.php

 1 <?php
 2 include("init.inc.php");
 3 
 4 $aw = "m djsjkslk";
 5 
 6 $smarty->assign("rr",$aw);
 7 
 8 $smarty->display("xx.html");
 9 
10 
11 ?>

xx.html

 1 <html>
 2 
 3 <head>
 4 <meta  charset="utf-8"/>
 5 </head>
 6 
 7 <body>
 8 <!--引用变量-->
 9 <{$rr}><br />
10 
11 <!-- 首字符大写-->
12 <{$rr|capitalize}><br />
13 <!--计算字母数-->
14 <{$rr|count_characters}>
15 
16 
17 
18 </body>
19 
20 </html>

结果如图:

技术分享

 

变量调节器

标签:

原文地址:http://www.cnblogs.com/wanlibingfeng/p/5562297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!