Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォームコメントがあります。Zend_Authデータベースに挿入するユーザー ID を取得したいと考えています。どうすればいいですか?
Zend_Auth
がインスタンス化されている場合Zend_Auth:
そのインスタンスを取得します。 $auth = Zend_Auth::getInstance();
$auth = Zend_Auth::getInstance();
認証成功時に保存している必要がある ID を取得します。 $identity = $auth->getIdentity();
$identity = $auth->getIdentity();
保存したもののモデルに従って ID を使用します。