在线文档教程
PHP
Yaf

Yaf_View_Simple (class)

Yaf_View_Simple类

介绍

(Yaf >=1.0.0)

Yaf_View_SimpleYaf中的内置模板引擎,它是一个简单但快速的模板引擎,仅支持PHP脚本模板。

类简介

Yaf_View_Simple implements Yaf_View_Interface {

/ *属性* /

protected $_tpl_vars ;

protected $_tpl_dir ;

/* 方法 */

public bool assign ( string $name [, mixed $value ] )

public bool assignRef ( string $name , mixed &$value )

public bool clear ([ string $name ] )

final public __construct ( string $template_dir [, array $options ] )

public bool display ( string $tpl [, array $tpl_vars ] )

public string eval ( string $tpl_content [, array $tpl_vars ] )

public void __get ([ string $name ] )

public string getScriptPath ( void )

public void __isset ( string $name )

public string render ( string $tpl [, array $tpl_vars ] )

public void __set ( string $name , mixed $value )

public bool setScriptPath ( string $template_dir )

}

属性

_tpl_vars_tpl_dir

目录

  • Yaf_View_Simple :: assign - 分配值

  • Yaf_View_Simple :: assignRef - assignRef的用途

  • Yaf_View_Simple :: clear - 清除分配的值

  • Yaf_View_Simple :: __ construct - Yaf_View_Simple的构造函数

  • Yaf_View_Simple :: display - 渲染并显示

  • Yaf_View_Simple :: eval - 渲染模板

  • Yaf_View_Simple :: __ get - 检索分配的变量

  • Yaf_View_Simple :: getScriptPath - 获取模板目录

  • Yaf_View_Simple :: __ isset - __isset的用途

  • Yaf_View_Simple :: render - 渲染模板

  • Yaf_View_Simple :: __ set - 将值设置为引擎

  • Yaf_View_Simple :: setScriptPath - 设置tempaltes目录

← Yaf_View_Interface::setScriptPath

Yaf_View_Simple::assign →