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 (Template-Variablen extrahieren)
array get_template_vars(string varname);
Gibt ein Array der zugewiesenen Template-Variablen zurück.
Example 13.17. get_template_vars (Template-Variablen extrahieren)
<?php // foo extrahieren $foo = $smarty->get_template_vars('foo'); // alle zugewiesenen Template-Variablen extrahieren $tpl_vars = $smarty->get_template_vars(); // Anschauen print_r($tpl_vars); ?>