-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIschool.php
executable file
·44 lines (38 loc) · 971 Bytes
/
Ischool.php
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
/**
* Ischool应用配置
*
* @copyright (c)Ldos.net All rights reserved.
* @author Shawn Yu <[email protected]>
*/
return array(
// 默认路由
'Default' => [
'appName' => 'Ischool',
'controller' => 'Ischool/Api/Test',
'action' => 'get',
],
// 语言配置, zh_cn 或 en
'Land' => 'zh_cn',
// 开发者语言包位置
'LandDir' => ROOT . 'lang',
// 错误码文件名
'CodeStatus' => 'CodeStatus',
// 时区设置
'TimeZone' => 'Asia/Shanghai',
// DB 配置
'Db' => array(
'Master' => array(
'type' => 'mysqli',
'host' => '127.0.0.1',
'user' => 'root',
'password' => '123456',
'port' => 3306,
'db' => 'ischool',
'prefix' => 'sch_', // 表名前缀
'charset' => 'utf8'
)
),
// 缓存 配置
'Cache' => array(),
);