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

clear_all_assign() — 割り当てられた全てのテンプレート変数を破棄します。

説明

void clear_all_assign();

Example 13.5. clear_all_assign()


<?php
// 名前/値のペアを渡します
$smarty->assign('Name', 'Fred');
$smarty->assign('Address', $address);

// 上の内容を出力します
print_r( $smarty->get_template_vars() );

// 割り当てられた変数を破棄します
$smarty->clear_all_assign();

// 何も出力しません
print_r( $smarty->get_template_vars() );

?>

   

clear_assign()clear_config()get_template_vars()assign() および append() も参照してください。