* Responseオブジェクトを更新してビューを変える [#q79cd9b0]

 class fooActions extends sfActions
 {
     public function executeIndex()
         $response   = $this->getContext()->getResponse();
         $html = $response->getContent();
         $html = str_replce('</body>', 'TEST</body>', $html);
         $response->setContent($html);
         return sfView::NONE;
     }
 }


トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS