localhost.php 442 B

12345678910111213141516171819202122
  1. <?php
  2. return array
  3. (
  4. 'db' => array
  5. (
  6. 'type' => 'Pdo',
  7. 'host' => 'web-mysql',
  8. 'port' => '3306',
  9. 'name' => 'dever2test',
  10. 'user' => 'root',
  11. 'pwd' => '123456',
  12. ),
  13. 'db1' => array
  14. (
  15. 'type' => 'Pdo',
  16. 'host' => 'web-mysql',
  17. 'port' => '3306',
  18. 'name' => 'dever2test2',
  19. 'user' => 'root',
  20. 'pwd' => '123456',
  21. ),
  22. );