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);
Возвращает значение переменной. Если аргумент не передан, будет возвращен массив всех назначенными переменными.
Example 13.17. get_template_vars
<?php // получаем назначенную переменную шаблона 'foo' $foo = $smarty->get_template_vars('foo'); // получаем все назначенные переменные шаблона $tpl_vars = $smarty->get_template_vars(); // поглядим, что из этого вышло print_r($tpl_vars); ?>