Name
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);
?>
Comments
Post a Comment
