如何从引导文件内部获取请求对象?
我可以尝试这种方法,但不能工作.
$request= new Zend_Controller_Request_Http(); $request = Zend_Controller_FrontController::getInstance()->getRequest();
如果你真的想要,你可以实现这个呼叫:
原文链接:https://www.f2er.com/php/139747.htmlpublic function _initRequest() { $this->bootstrap('frontController'); $front = $this->getResource('frontController'); $front->setRequest(new Zend_Controller_Request_Http()); $request = $front->getRequest(); }
但是,应该避免这种情况,因为在调用前端控制器(例如模块,控制器或动作名称)之后,Response对象所需的大部分数据都将可用.
存储在Response对象中的其他变量从全局数组(例如$_SERVER,$_POST或$_GET)中提取,您可以直接在引导中直接读取.
但是很可能你想在front controller plugin中使用Response对象:
class Your_Controller_Plugin_PluginName extends Zend_Controller_Plugin_Abstract { public function preDispatch(Zend_Controller_Request_Abstract $request) { // do anything with the $request here } }