
## 如何配置?
>在應用模塊下創建一個config.php文件,這樣子系統就會調用里面的參數,使用之后就會獲取里面的數組,但是官網只提供兩個參數,如果創建了這個文件,且里面是空值的話會報錯
~~~
<?php
/*
* +----------------------------------------------------------------------
* | ZrWebPHP [ WE CAN DO IT JUST CUMIN ]
* +----------------------------------------------------------------------
* | Copyright (c) 2020 http://zrv7.com All rights reserved.
* +----------------------------------------------------------------------
* | Author: Cumin <2937978586@qq.com>
* +----------------------------------------------------------------------
*/
return [
'default_controller' => 'Index', # 默認控制器名 #
'default_action' => 'index' # 默認操作名 #
];
~~~