牛骨文教育服务平台(让学习变的简单)

get_template_vars
取得模板变量的值

array get_template_vars ([string varname])

This returns the given assigned variable value. If no parameter is given, an array of all assigned variables is returned.

返回一个指定的已赋值的模板变量的值。如果不指定参数,则返回一个包含所有已赋值模板变量的值的数组。

Example 13-17. get_template_vars
例子 13-17. 取得模板变量的值

// 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);