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:
clearAllAssign() — 割り当てられた全てのテンプレート変数を破棄します。
void clearAllAssign();
Example 13.5. clearAllAssign()
<?php // 名前/値のペアを渡します $smarty->assign('Name', 'Fred'); $smarty->assign('Address', $address); // 上の内容を出力します print_r( $smarty->getTemplateVars() ); // 割り当てられた変数を破棄します $smarty->clearAllAssign(); // 何も出力しません print_r( $smarty->getTemplateVars() ); ?>
clearAssign()
、
clearConfig()
、
getTemplateVars()
、
assign()
および append()
も参照してください。