本文整理汇总了PHP中Q_Response::clearSlot方法的典型用法代码示例。如果您正苦于以下问题:PHP Q_Response::clearSlot方法的具体用法?PHP Q_Response::clearSlot怎么用?PHP Q_Response::clearSlot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Q_Response
的用法示例。
在下文中一共展示了Q_Response::clearSlot方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handleForwardException
protected static function handleForwardException($e)
{
$slotNames = Q_Request::slotNames(true);
foreach ($slotNames as $slotName) {
Q_Response::clearSlot($slotName);
}
// Go again, this time with a different URI.
Q::$toolWasRendered = array();
self::$uri = Q_Uri::from($e->uri);
if (is_array($e->skip)) {
self::$skip = $e->skip;
} else {
// Don't process any non-GET methods this time around,
// Do not collect any analytics
// And also ignore any accumulated errors
self::$skip = array('Q/method' => true, 'Q/analytics' => true, 'Q/errors' => true);
}
// We'll be handling errors anew
self::$handling_errors = false;
}