Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

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);
?>