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:
get_template_vars
array get_template_vars(string varname);
Restituisce il valore della variabile data assegnata al template. Se non viene fornito il parametro viene restituito un array di tutte le variabili assegnate.
Example 13.17. get_template_vars
<?php // recupero la variabile assegnata al template 'foo' $foo = $smarty->get_template_vars('foo'); // recupero tutte le variabili assegnate al template $tpl_vars = $smarty->get_template_vars(); // diamo un'occhiata print_r($tpl_vars); ?>