Yaf_View_Simple::__construct

(Yaf >=1.0.0)

Yaf_View_Simple::__constructYaf_View_Simple 的构造函数

说明

final public Yaf_View_Simple::__construct(string $template_dir, array $options = ?)

参数

template_dir

模板的基本目录,默认情况下,对于 Yaf 来说,它是 APPLICATOIN . "/views"。

options

Options for the engine, as of Yaf 2.1.13, you can use short tag
      "<?=$var?>" in your template(regardless of "short_open_tag"), 
      so comes a option named "short_tag",  you can switch this off 
      to prevent use short_tag in template.

示例

示例 #1 Yaf_View_Simple::__constructor() 示例

<?php
define
("TEMPLATE_DIRECTORY", APPLICATOIN_PATH . '/views');
$view = new Yaf_View_Simple(TEMPLATE_DIRECTORY, array(
'short_tag' => false //不允许在模板中使用短标签
));
?>
添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top