本文整理汇总了PHP中Yaf_Dispatcher::destoryInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Yaf_Dispatcher::destoryInstance方法的具体用法?PHP Yaf_Dispatcher::destoryInstance怎么用?PHP Yaf_Dispatcher::destoryInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Yaf_Dispatcher
的用法示例。
在下文中一共展示了Yaf_Dispatcher::destoryInstance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onRequest
/**
* Method onRequest
* @desc http 请求部分
* @author WenJun <wenjun01@baidu.com>
* @param swoole_http_request $request
* @param swoole_http_response $response
* @return void
*/
public function onRequest(swoole_http_request $request, swoole_http_response $response)
{
//清理环境
Yaf_Registry::flush();
Yaf_Dispatcher::destoryInstance();
//注册全局信息
$this->initRequestParam($request);
Yaf_Registry::set('SWOOLE_HTTP_REQUEST', $request);
Yaf_Registry::set('SWOOLE_HTTP_RESPONSE', $response);
//执行
ob_start();
try {
$requestObj = new Yaf_Request_Http($request->server['request_uri']);
$configArr = Yaf_Application::app()->getConfig()->toArray();
if (!empty($configArr['application']['baseUri'])) {
//set base_uri
$requestObj->setBaseUri($configArr['application']['baseUri']);
}
$this->yafAppObj->bootstrap()->getDispatcher()->dispatch($requestObj);
} catch (Yaf_Exception $e) {
var_dump($e);
}
$result = ob_get_contents();
ob_end_clean();
$response->end($result);
}