模板设计-变量
Sdopx的多种类型的变量。
在Sdopx中的变量可以直接显示,或者作为 函数、属性 、修饰器, 内部条件表达式等的参数。 要显示变量,可以简单地用 定界符 把变量括起来。
{$Name}
{$product.part_no} <b>{$product.description}</b>
{$Contacts['row'].Phone}
<body bgcolor="{#bgcolor#}">
从 php 文件赋值的变量在模板文件中以美元符号 ($) 开头。
变量赋值
define('ROOT_DIR', __DIR__);
date_default_timezone_set('PRC');
require(ROOT_DIR . '/vendor/autoload.php');
use sdopx\Sdopx;
$sdopx = new Sdopx();
//设置模板目录
$sdopx->setTemplateDir('./view');
//设置编译代码存放目录
$sdopx->setCompileDir('./runtime');
//注册变量
$sdopx->assign('firstname', 'Doug');
$sdopx->assign('lastname', 'Evans');
$sdopx->assign('meetingPlace', 'New York');
//显示模板
$sdopx->display('test.tpl');
也可以一次性赋值所有变量
$sdopx = new Sdopx();
//设置模板目录
$sdopx->setTemplateDir('./view');
//设置编译代码存放目录
$sdopx->setCompileDir('./runtime');
//注册变量
$sdopx->assign([
'firstname'=>'Doug',
'lastname'=>'Evans',
'meetingPlace'=>'New York',
]);
//显示模板
$sdopx->display('test.tpl');
Sdopx 使用 assign 方法进行变量赋值
对应的模板文件 test.tpl
<html>
<head>
<title>test</title>
<meta charset="utf-8"/>
</head>
<body>
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}.
</body>
</html>
输出:
<html>
<head>
<title>test</title>
<meta charset="utf-8"/>
</head>
<body>
Hello Doug Evans, glad to see you can make it.
<br/>
This weeks meeting is in New York.
This weeks meeting is in New York.
</body>
</html>
数组赋值
数组赋值
可以通过点号“.”来使用赋值的数组变量。
$sdopx = new Sdopx();
//设置模板目录
$sdopx->setTemplateDir('./view');
//设置编译代码存放目录
$sdopx->setCompileDir('./runtime');
//注册变量
$sdopx->assign('Contacts',
['fax' => '555-222-9876',
'email' => 'zaphod@slartibartfast.example.com',
'phone' => ['home' => '555-444-3333',
'cell' => '555-111-1234']
]
);
//显示模板
$sdopx->display('test.tpl');
示例模板 test.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 />
zaphod@slartibartfast.example.com<br />
555-444-3333<br />
555-111-1234<br />
你还可以使用下标来获取数值和PHP语法一样。
$sdopx->assign('Contacts', array(
'555-222-9876',
'zaphod@slartibartfast.example.com',
array('555-444-3333',
'555-111-1234')
));
$sdopx->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 />
zaphod@slartibartfast.example.com<br />
555-444-3333<br />
555-111-1234<br />
对象赋值
从PHP赋值的对象的属性和方法,可以通过->来使用。
name: {$person->name}<br />
email: {$person->email}<br />
保留变量名
{$sdopx} 和 {$this} 是保留的变量名称。
$this 是 new Sdopx($context) 中 如果 使用上下文创建实例时,在模板中使用上下文的变量。
如:
class Context
{
public function hello($name)
{
return 'hello ' . $name;
}
}
$context = new Context();
$sdopx = new Sdopx($context);
//设置模板目录
$sdopx->setTemplateDir('./view');
//设置编译代码存放目录
$sdopx->setCompileDir('./runtime');
//注册变量
$sdopx->assign('name', 'wj008');
//显示模板
$sdopx->display('test.tpl');
模板:
{$this->hello($name)}<br />
输出:
hello wj008<br />
而 $sdopx 变量是预留内置变量。暂无使用。