get_template_vars

PHP Smarty

Smarty - the compiling PHP template engine
Prev 来源:PHP中文社区 Chapter 13. Methods Next

get_template_vars
取得模板变量的值

// get assigned template var 'foo'
$foo = $smarty->get_template_vars('foo');

// get all assigned template vars
$tpl_vars = $smarty->get_template_vars();

// take a look at them
print_r($tpl_vars);

Prev 来源:PHP中文社区 Home Next
get_registered_object
取得已注册的对象
Up is_cached
是否已被缓存