This commit is contained in:
2021-08-05 13:54:33 +08:00
parent 10e4c6ce95
commit 4753a99824
+5 -6
View File
@@ -139,12 +139,12 @@ class Router extends HttpService implements RouterInterface
*/ */
private function tree($path, $handler, string $method = 'any'): Node private function tree($path, $handler, string $method = 'any'): Node
{ {
[$first, $explode] = $this->split($path); $explode = $this->split($path);
if (!isset($this->nodes[$method]['/'])) { if (!isset($this->nodes[$method]['/'])) {
$this->nodes[$method]['/'] = $this->NodeInstance('/', 0, $method); $this->nodes[$method]['/'] = $this->NodeInstance('/', 0, $method);
} }
$parent = $this->nodes[$method]['/']; $parent = $this->nodes[$method]['/'];
if (!empty($first) && !empty($explode)) { if (!empty($explode)) {
$parent = $this->bindNode($parent, $explode, $method); $parent = $this->bindNode($parent, $explode, $method);
} }
$parent->path = $path; $parent->path = $path;
@@ -162,7 +162,6 @@ class Router extends HttpService implements RouterInterface
private function bindNode(Node $parent, array $explode, $method): Node private function bindNode(Node $parent, array $explode, $method): Node
{ {
$a = 0; $a = 0;
var_dump($explode);
foreach ($explode as $value) { foreach ($explode as $value) {
++$a; ++$a;
$search = $parent->findNode($value); $search = $parent->findNode($value);
@@ -432,13 +431,13 @@ class Router extends HttpService implements RouterInterface
{ {
$path = $this->addPrefix() . '/' . ltrim($path, '/'); $path = $this->addPrefix() . '/' . ltrim($path, '/');
if ($path === '/') { if ($path === '/') {
return ['', null]; return [];
} }
$filter = array_filter(explode('/', $path)); $filter = array_filter(explode('/', $path));
if (!empty($filter)) { if (!empty($filter)) {
return [array_shift($filter), $filter]; return $filter;
} }
return ['', null]; return [];
} }
/** /**