- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PHP-symfony/コントローラ/セッション へ行く。
- 1 (2011-08-10 (水) 16:15:46)
セッション
$this->getUser()->setAttribute('mesg', 'エラーが発生しました'); # 設定 $mesg = $this->getUser()->getAttribute('mesg'); # 取得 $mesg = $this->getUser()->hasAttribute('mesg'); $this->getUser()->getAttributeHolder()->remove('mesg'); # 削除
<html><?php $sf_user->getAttribute('mesg')?></html> # テンプレートで参照する
参考
http://symfony.xrea.jp/1.2/book/06-Inside-the-Controller-Layer.html#user.session