- 追加された行はこの色です。
- 削除された行はこの色です。
- PHP-symfony/コントローラ/Responseオブジェクトを更新してビューを変える へ行く。
- PHP-symfony/コントローラ/Responseオブジェクトを更新してビューを変える の差分を削除
* 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; } }