Smarty 图标

您可以根据商标声明使用 Smarty 标识。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他咨询,请通过以下方式联系我们

使用 Smarty 的网站

广告

第 4 章. 变量

Smarty 有多种不同类型的变量。变量类型取决于它之前或包含在什么符号中。

Smarty 中的变量可以直接显示,也可以用作函数

示例 4.1. 示例变量

{$Name}

{$product.part_no} <b>{$product.description}</b>

{$Contacts[row].Phone}

<body bgcolor="{#bgcolor#}">

  


注意

查看已分配 Smarty 变量的一种简单方法是使用调试控制台

从 PHP 分配的变量

通过在前面前缀美元 ($) 符号引用已分配的变量。

示例 4.2. 已分配变量

PHP 代码

<?php

$smarty = new Smarty();

$smarty->assign('firstname', 'Doug');
$smarty->assign('lastname', 'Evans');
$smarty->assign('meetingPlace', 'New York');

$smarty->display('index.tpl');

?>

index.tpl

Hello {$firstname} {$lastname}, glad to see you can make it.
<br />
{* this will not work as $variables are case sensitive *}
This weeks meeting is in {$meetingplace}.
{* this will work *}
This weeks meeting is in {$meetingPlace}.

   

上述内容将输出

Hello Doug Evans, glad to see you can make it.
<br />
This weeks meeting is in .
This weeks meeting is in New York.

  

关联数组

您还可以通过在句点 "." 符号之后指定键来引用关联数组变量。

示例 4.3. 访问关联数组变量

<?php
$smarty->assign('Contacts',
    array('fax' => '555-222-9876',
          'email' => '[email protected]',
          'phone' => array('home' => '555-444-3333',
                           'cell' => '555-111-1234')
                           )
         );
$smarty->display('index.tpl');
?>

   

index.tpl

{$Contacts.fax}<br />
{$Contacts.email}<br />
{* you can print arrays of arrays as well *}
{$Contacts.phone.home}<br />
{$Contacts.phone.cell}<br />

   

这将输出

555-222-9876<br />
[email protected]<br />
555-444-3333<br />
555-111-1234<br />

   

数组索引

您可以通过其索引引用数组,非常类似于原生 PHP 语法。

示例 4.4. 按索引访问数组

<?php
$smarty->assign('Contacts', array(
                           '555-222-9876',
                           '[email protected]',
                            array('555-444-3333',
                                  '555-111-1234')
                            ));
$smarty->display('index.tpl');
?>

   

index.tpl

{$Contacts[0]}<br />
{$Contacts[1]}<br />
{* you can print arrays of arrays as well *}
{$Contacts[2][0]}<br />
{$Contacts[2][1]}<br />

   

这将输出

555-222-9876<br />
[email protected]<br />
555-444-3333<br />
555-111-1234<br />

   

对象

PHP 分配的 对象的 属性可以通过指定 -> 符号后的属性名称来引用。

示例 4.5:访问对象属性

name:  {$person->name}<br />
email: {$person->email}<br />

   

这将输出

name:  Zaphod Beeblebrox<br />
email: [email protected]<br />