Miles' Blog

天涯何處無幹話,何必要講實務話

Zend_Controller

The Request Object

原本 PHP 的 request 都是使用全域變數做存取,但在用 Framework 時,都會建議使用 Framework 提供的 function 來讀取。

主要會使用的就是 Zend_Controller_Request_Http 了,在 Action Controller 裡,可以使用 %%$this->getRequest()%% 取得。

取消 layout

$this->getHelper('layout')->disableLayout();

取消 view render

$this->getHelper('viewRenderer')->setNoRender();
0%