审查视图

lib/Route.php 628 字节
1  
邓超 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?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()
    {
1  
邓超 authored
24
        $this->url = require_once ROOT_PATH.'/route.php';
1  
邓超 authored
25 26 27 28 29 30 31 32 33 34 35

    }

    /**
     * @param $route
     * @return array
     * @author:dc
     * @time 2023/2/13 11:30
     */
    public function get($route):array{
        $route = trim($route,'/');
1  
邓超 authored
36 37 38
        if(empty($route)){
            return $this->url['/']??[];
        }
1  
邓超 authored
39 40 41 42 43 44
        return $this->url[$route]??[];
    }



}