前回の続き。今日は6章を勉強しました。 コントロールレイヤーの内側 アクションの情報を取り出す class mymoduleActions extends sfActions { public function executeIndex() { // リクエストパラメータを取り出す $password = $this->getRequestParameter('password'); // コントローラ情報を取り出す $moduleName = $this->getModuleName(); $actionName = $this->getActionName(); // フレームワークのコアオブジェクトを取り出す $request = $this->getRequest(); $userSession = $this->getUser(); $response = $this->getR

