db.php 413 B

12345678910111213
  1. <?php
  2. return array(
  3. 'DB_TYPE' => 'mysql', // 数据库类型
  4. 'DB_HOST' => '127.0.0.1', // 服务器地址
  5. 'DB_NAME' => '数据库库名', // 数据库名-起点营销微信:yshihai
  6. 'DB_USER' => '用户名', // 用户名-起点营销微信:yshihai
  7. 'DB_PWD' => '密码', // 密码-起点营销微信:yshihai
  8. 'DB_PORT' => '3306', // 端口
  9. 'DB_PREFIX' => 'oscshop_', // 数据库表前缀
  10. );
  11. ?>