改进Route类的路由匹配后的后置行为 允许单独执行输出 并废除 response_auto_output 配置参数

This commit is contained in:
thinkphp
2016-05-10 16:08:10 +08:00
parent 46009e3c2e
commit 0d497d4abb
3 changed files with 11 additions and 7 deletions

View File

@@ -525,7 +525,10 @@ class Route
// 匹配到路由规则
// 检测是否定义路由
if (!empty($option['after_behavior'])) {
Hook::exec($option['after_behavior'], $route);
$result = Hook::exec($option['after_behavior'], $route);
if (false === $result) {
return ['type' => 'finish'];
}
}
if ($route instanceof \Closure) {
// 执行闭包