index.php 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2008 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. // $Id$
  12. // 定义ThinkPHP框架路径
  13. define('BASE_PATH','./');
  14. define('THINK_PATH', './ThinkPHP');
  15. //定义项目名称和路径
  16. define('APP_NAME', 'update_live_pay');
  17. define('APP_PATH', '.');
  18. define('APP_ROOT_PATH', str_replace('update_live_pay/index.php', '', str_replace('\\', '/', __FILE__)));
  19. // 加载框架入口文件
  20. require(THINK_PATH."/ThinkPHP.php");
  21. //实例化一个网站应用实例
  22. $AppWeb = new App();
  23. //应用程序初始化
  24. $AppWeb->run();
  25. ?>]-