我们接着上次的内容讲解,首先这次把smarty定界符改了:
$tpl->left_delimiter = "<!--
{";//左定界符
$tpl->right_delimiter = "}-->";//右定界符
$tpl->right_delimiter = "}-->";//右定界符
2.变量
下面是通过php赋值(assign)方式分配值:
下面是通过php赋值(assign)方式分配值:
1.)简单变量
通过 $smarty->assign('name','xcf007');
分配的变量,在模板里面我们可以像php中那样调用
如 <!--{$name}-->
通过 $smarty->assign('name','xcf007');
分配的变量,在模板里面我们可以像php中那样调用
如 <!--{$name}-->
2.)数组
这是简单的变量形式,下面看看数组的:
关键代码部分
这是简单的变量形式,下面看看数组的:
关键代码部分
chap2.php:
$tpl->assign('me',array('xcf007','山东威海',26));
$tpl->assign('me',array('xcf007','山东威海',26));
模板chap2.tpl(注意模板后缀任意,习惯用tpl你也可以用html等):
我的名字是
<!--{$me[0]}-->,我来自<!--{$me[1]}-->,本人年龄<!--{$me[2]}-->.
再看看关联数组的:
php部分:
php部分:
$tpl->assign('me',array('name'=>'xcf007','city'=>'山东威海','age'=>26));
模板部分:
我的名字是<!--{$me.name}-->,我来自<!--{$me.city}-->,本人年龄<!--{$me.age}-->.
注意关联数组的引用方式,用的点.符号。
对于嵌套的数组道理一样,类似 $me.name.firstname这个样子。
对于嵌套的数组道理一样,类似 $me.name.firstname这个样子。
3.)对象
chap2.php,简单的一段代码,属性公开:
chap2.php,简单的一段代码,属性公开:
class Person
{
public $name;
public $city;
public $age;
function __construct($name,$city,$age)
{
$ this->name=$name;
$ this->city=$city;
$ this->age=$age;
}
}
$me= new Person('xcf007','山东威海',26);
$tpl->assign('me',$me);
{
public $name;
public $city;
public $age;
function __construct($name,$city,$age)
{
$ this->name=$name;
$ this->city=$city;
$ this->age=$age;
}
}
$me= new Person('xcf007','山东威海',26);
$tpl->assign('me',$me);
模板chap2.tpl:
我的名字是<!--{$me->name}-->,我来自<!--{$me->city}-->,本人年龄<!--{$me->age}-->.
注意对象访问操作符,这里是->
下面我们看看如何从配置文件获取值:
chap2.php:
<?php
require_once( "inc/smarty.inc.php"); //引入smarty
$tpl->assign('title', "读取配置文件变量");
$tpl->display('chap2.tpl');
?>
<?php
require_once( "inc/smarty.inc.php"); //引入smarty
$tpl->assign('title', "读取配置文件变量");
$tpl->display('chap2.tpl');
?>
在configs文件夹下建立menu.conf文件:
[chinese]
home = "首页"
introduction = "公司介绍"
contact = "联系我们"
[english]
home = "Home"
introduction = "Introduction"
contact = "Contact Us"
home = "首页"
introduction = "公司介绍"
contact = "联系我们"
[english]
home = "Home"
introduction = "Introduction"
contact = "Contact Us"
模板文件chap2.tpl:
<!--{config_load file=
"menu.conf" section=
"chinese"}-->
<html>
<head><title><!--{$title}--></title></head>
<body>
<p><a href= "#"><!--{#home#}--></a> | <a href= "#"><!--{$smarty.config.introduction}--></a> | <a href= "#"><!--{#contact#}--></a></p>
</body>
</html>
<html>
<head><title><!--{$title}--></title></head>
<body>
<p><a href= "#"><!--{#home#}--></a> | <a href= "#"><!--{$smarty.config.introduction}--></a> | <a href= "#"><!--{#contact#}--></a></p>
</body>
</html>
通过config_load的smarty模板函数加载配置文件menu.conf,里面的chinese部分(就是中文菜单啦)
如果加载英文的可以 ,<!--{config_load file="menu.conf" section="english"}-->
模板变量引用方式可以用#变量名字#方式,也可以$smarty保留变量的方式就是$smarty.config.变量名字的方式,各有特色。
##方式简单些,但有时出在引号里面时,就得考虑用保留变量方式了。
如果加载英文的可以 ,<!--{config_load file="menu.conf" section="english"}-->
模板变量引用方式可以用#变量名字#方式,也可以$smarty保留变量的方式就是$smarty.config.变量名字的方式,各有特色。
##方式简单些,但有时出在引号里面时,就得考虑用保留变量方式了。
待续...
本文转自 xcf007 51CTO博客,原文链接:http://blog.51cto.com/xcf007/157705
,如需转载请自行联系原作者