PHP DIY系列之自定义配置和路由
来源:动视网
责编:小采
时间:2020-11-02 18:47:05
PHP DIY系列之自定义配置和路由
PHP DIY系列之自定义配置和路由:我们已经开发完成,但我们还需要更多。比如自定义配置和路由。app文件夹下新建Config.php<php/** *自定义配置 */return [ 'debug' => false, 'route' => [ '' => 'demo/we
导读PHP DIY系列之自定义配置和路由:我们已经开发完成,但我们还需要更多。比如自定义配置和路由。app文件夹下新建Config.php<php/** *自定义配置 */return [ 'debug' => false, 'route' => [ '' => 'demo/we

PHP DIY系列之自定义配置和路由:我们已经开发完成,但我们还需要更多。比如自定义配置和路由。app文件夹下新建Config.php<php/** *自定义配置 */return [ 'debug' => false, 'route' => [ '' => 'demo/we
PHP DIY系列之自定义配置和路由
PHP DIY系列之自定义配置和路由:我们已经开发完成,但我们还需要更多。比如自定义配置和路由。app文件夹下新建Config.php<php/** *自定义配置 */return [ 'debug' => false, 'route' => [ '' => 'demo/we