config.php 918 B

1234567891011121314151617181920212223
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 海豚PHP框架 [ DolphinPHP ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://dolphinphp.com
  8. // +----------------------------------------------------------------------
  9. /**
  10. * 安装程序配置文件
  11. */
  12. return array(
  13. //产品配置
  14. 'install_product_name' => 'DolphinPHP', //产品名称
  15. 'install_website_domain' => 'http://www.dolphinphp.com', //官方网址
  16. 'install_company_name' => '河源市卓锐科技有限公司', //公司名称
  17. 'original_table_prefix' => 'dp_', //默认表前缀
  18. // 安装配置
  19. 'install_table_total' => 255, // 安装时,需执行的sql语句数量
  20. );