Commit a1f1b10f by 王兴勇

Update README.MD

parent 2ddd701a
......@@ -5,10 +5,11 @@
3. 快捷切换数据连接
###警告
以下所有配置文件名不能出现 . 这个符号,如果文件名出现 . 这个符号会被转成对应的目录分隔符 /
>以下所有配置文件名不能出现 . 这个符号,如果文件名出现 . 这个符号会被转成对应的目录分隔符 /
###模块引入
`shopnc.php` 头部
>在 `shopnc.php` 头部
```php
require sprintf('%s%sconfig%2$scommon.php', dirname(__DIR__), DIRECTORY_SEPARATOR);
```
......@@ -23,8 +24,9 @@ $config['db']['master']['dbpwd'] = $__DB_CONFIG['dbpwd'];
$config['db']['master']['dbname'] = $__DB_CONFIG['dbname'];
...
```
使用 `require_db_config` 来实现数据库连接快速切换
个人在 `shopnc.php` 引入功能文件后使用 `require_db_config`
>使用 `require_db_config` 来实现数据库连接快速切换
>个人在 `shopnc.php` 引入功能文件后使用 `require_db_config`
```php
/**
* @param string $config_name 数据库配置名称
......@@ -43,8 +45,9 @@ if ( ! function_exists('local')) {
}
```
###用户模拟登陆
使用 `faker_login` 来实现数据库连接快速切换
个人在 `shopnc.php` 底部使用 `faker_login`
>使用 `faker_login` 来实现数据库连接快速切换
>个人在 `shopnc.php` 底部使用 `faker_login`
```php
/**
* @param string $configs 要模拟的用户
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment