What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
getTemplateVars() — 取得变量值
array getTemplateVars(string varname);
如果不设置参数,则全部赋值的变量值都将返回。
Example 14.31. getTemplateVars
<?php // 取得'foo'值 $myVar = $smarty->getTemplateVars('foo'); // 取得全部的变量值 $all_tpl_vars = $smarty->getTemplateVars(); // 看看 print_r($all_tpl_vars); ?>
参见 assign()
,
{assign}
,
append()
,
clearAssign()
,
clearAllAssign()
和
getConfigVars()