dbcollect.php 526 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Bear
  5. * Date: 2019/7/24
  6. * Time: 下午4:28
  7. */
  8. return [
  9. 'hostname' => \think\Env::get('dbcollect.hostname', ''),
  10. 'hostport' => \think\Env::get('dbcollect.hostport', ''),
  11. 'username' => \think\Env::get('dbcollect.username', ''),
  12. 'password' => \think\Env::get('dbcollect.password', ''),
  13. 'database' => \think\Env::get('dbcollect.database', ''),
  14. 'tables' => \think\Env::get('dbcollect.tables', ''),
  15. 'deploy' => \think\Env::get('dbcollect.deploy', ''),
  16. ];