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