获取当前 Asf_Request 实例
public function getRequest(void)
无
Asf_Request object
<?php
class IndexService extends Asf_AbstractService
{
public function IndexAction()
{
print_r($this->getRequest());
}
}
$configs = array(
'asf' => array(
'root_path' => __DIR__,
)
);
$handle = new Asf_Application($configs);
$handle->run();