array get_template_vars([string varname])
array get_template_vars
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 themprint_r($tpl_vars);