25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 년 전
123456789101112131415161718192021
  1. <?php
  2. return array(
  3. 'tables' => array(
  4. //请将以下配置拷贝到 ./Config/dbs.php 文件对应的位置中,未配置的表将使用默认路由
  5. //10张表,可根据需要,自行调整表前缀、主键名和路由
  6. 'task_mq' => array(
  7. 'prefix' => 'phalapi_',
  8. 'key' => 'id',
  9. 'map' => array(
  10. array('db' => 'db_demo'),
  11. array('start' => 0, 'end' => 9, 'db' => 'db_demo'),
  12. ),
  13. ),
  14. )
  15. );