1234567891011121314151617 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2019/7/24
- * Time: 下午4:28
- */
- return [
- 'hostname' => \think\Env::get('dbcollect.hostname', ''),
- 'hostport' => \think\Env::get('dbcollect.hostport', ''),
- 'username' => \think\Env::get('dbcollect.username', ''),
- 'password' => \think\Env::get('dbcollect.password', ''),
- 'database' => \think\Env::get('dbcollect.database', ''),
- 'tables' => \think\Env::get('dbcollect.tables', ''),
- 'deploy' => \think\Env::get('dbcollect.deploy', ''),
- ];
|