Smarty变量用法详解
程序员文章站
2023-12-21 10:32:22
本文实例讲述了smarty变量用法。分享给大家供大家参考,具体如下:
1. 从php分配的变量
调用从php分配的变量需在前加"$"符号.(译注:同php一样)
调用...
本文实例讲述了smarty变量用法。分享给大家供大家参考,具体如下:
1. 从php分配的变量
调用从php分配的变量需在前加"$"符号.(译注:同php一样)
调用模板内的assign函数分配的变量也是这样.(译注:也是用$加变量名来调用)
示例:
index.php:
$smarty = new smarty; $smarty->assign('firstname', 'doug'); $smarty->assign('lastlogindate', 'january11th, 2001'); $smarty->display('index.tpl');
index.tpl:
hello {$firstname}, glad to see you couldmake it. <p> your last login was on {$lastlogindate}.
输出:
hello doug, glad to see you could make it. <p> your last login was on january 11th, 2001.
2. 从配置文件读取的变量
配置文件中的变量需要通过用两个"#"或者是smarty的保留变量 $smarty.config.来调用(后面会讲到)
第二种语法在变量作为属性值并被引号括住的时候非常有用.
(译注:举个例子 {include file="#includefile#"} 这样#includefile#将被当作字符处理,而不表示配置文件变量,但可以这样表示{include file="`$smarty.config.includefile`"}不要忘了加``)
示例:
foo.conf:
pagetitle = "this is mine" bodybgcolor = "#eeeeee" tablebordersize = "3" tablebgcolor = "#bbbbbb" rowbgcolor = "#cccccc"
index.tpl:
{config_load file="foo.conf"} <html> <title>{#pagetitle#}</title> <body bgcolor="{#bodybgcolor#}"> <table border="{#tablebordersize#}" bgcolor="{#tablebgcolor#}"> <tr bgcolor="{#rowbgcolor#}"> <td>first</td> <td>last</td> <td>address</td> </tr> </table> </body> </html>
index.tpl:
{config_load file="foo.conf"} <html> <title>{$smarty.config.pagetitle}</title> <body bgcolor="{$smarty.config.bodybgcolor}"> <table border="{$smarty.config.tablebordersize}"bgcolor="{$smarty.config.tablebgcolor}"> <tr bgcolor="{$smarty.config.rowbgcolor}"> <td>first</td> <td>last</td> <td>address</td> </tr> </table> </body> </html>
上述两种模板写法都输出:
<html> <title>this is mine</title> <body bgcolor="#eeeeee"> <table border="3" bgcolor="#bbbbbb"> <tr bgcolor="#cccccc"> <td>first</td> <td>last</td> <td>address</td> </tr> </table> </body> </html>
配置文件的变量只有在它们被加载以后才能使用.
更多关于smarty相关内容感兴趣的读者可查看本站专题:《smarty模板入门基础教程》、《php模板技术总结》、《php基于pdo操作数据库技巧总结》、《php运算与运算符用法总结》、《php网络编程技巧总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于smarty模板的php程序设计有所帮助。