本文整理匯總了PHP中Yaf_Registry::flush方法的典型用法代碼示例。如果您正苦於以下問題:PHP Yaf_Registry::flush方法的具體用法?PHP Yaf_Registry::flush怎麽用?PHP Yaf_Registry::flush使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Yaf_Registry
的用法示例。
在下文中一共展示了Yaf_Registry::flush方法的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);
}