> Yaf中文手册 > Yaf_Controller_Abstract::getRequest

名称

Yaf_Controller_Abstract::getRequest

(Since Yaf 1.0.0.5)

public Yaf_Request_Abstract Yaf_Controller_Abstract::getRequest( void  );

获取当前的请求实例

参数
void

该方法不需要参数

返回值

Yaf_Request_Abstract实例

例子

例 11.47. Yaf_Controller_Abstract::getRequest 的例子

     
     <?php
     class IndexController extends Yaf_Controller_Abstract {
        public funciton init() {
            $request = $this->getRequest();
        }
     }
     ?>