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.18. get_template_vars
<?php // 割り当てられたテンプレート変数'foo'を取得します $myVar = $smarty->get_template_vars('foo'); // 割り当てられたテンプレートの全ての変数を取得します $all_tpl_vars = $smarty->get_template_vars(); // では見てみましょう print_r($all_tpl_vars); ?>
assign()
、
{assign}
、
append()
、
clear_assign()
、
clear_all_assign()
および
get_config_vars()
も参照してください。