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() — returns assigned variable value(s)
array getTemplateVars(string varname);
If no parameter is given, an array of all assigned variables are returned.
Example 14.31. getTemplateVars
<?php // get assigned template var 'foo' $myVar = $smarty->getTemplateVars('foo'); // get all assigned template vars $all_tpl_vars = $smarty->getTemplateVars(); // take a look at them print_r($all_tpl_vars); ?>
See also assign()
,
{assign}
,
append()
,
clearAssign()
,
clearAllAssign()
and
getConfigVars()