get_template_vars

get_template_vars -- 

array get_template_vars ( [string varname])

This returns the given assigned variable value. If no parameter is given, an array of all assigned variables is returned.

Example 1. get_template_vars

<?php
// get assigned template var 'foo'
$foo = $smarty->get_template_vars('foo');

// get all assigned template vars
$tpl_vars = $smarty->get_template_vars();

// take a look at them
print_r($tpl_vars);
?>