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() — returns assigned variable value(s)

Description

array get_template_vars(string varname);

If no parameter is given, an array of all assigned variables are returned.

Example 13.18. get_template_vars


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

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

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

   

See also assign(), {assign}, append(), clear_assign(), clear_all_assign() and get_config_vars()