seller.php 767 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * 小梦科技资源nanodreamtech.com
  4. *
  5. * ==========================================================================
  6. * @link https://www.nanodreamtech.com/
  7. * @copyright Copyright (c) 2015 liofis.com.
  8. * @license https://www.nanodreamtech.com/license.html License
  9. * ==========================================================================
  10. *
  11. * @author fish
  12. *
  13. */
  14. if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
  15. header("Content-Type:text/html; charset=utf-8");
  16. define('APP_DEBUG', true);
  17. define('BIND_MODULE','Seller');
  18. define ('APP_PATH', './Modules/' );
  19. define('ROOT_PATH',str_replace('\\','/',dirname(__FILE__)) . '/');
  20. define ('RUNTIME_PATH','./Runtime/');
  21. require './ThinkPHP/ThinkPHP.php';