Route.php
628 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
namespace Lib;
use Controller\Home;
/**
* 路由
* @author:dc
* @time 2023/2/13 11:22
* Class Route
* @package Lib
*/
class Route {
/**
* @var array
*/
private array $url = [];
public function __construct()
{
$this->url = require_once ROOT_PATH.'/route.php';
}
/**
* @param $route
* @return array
* @author:dc
* @time 2023/2/13 11:30
*/
public function get($route):array{
$route = trim($route,'/');
if(empty($route)){
return $this->url['/']??[];
}
return $this->url[$route]??[];
}
}