markdown格式wiki文档

index.php 1.0KB

12345678910111213141516171819202122232425
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Daswork simple php formwork
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) none
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Time: 2017-10-31 14:36
  10. // +----------------------------------------------------------------------
  11. // | Author: huwhois <huwhois@163.com>
  12. // +----------------------------------------------------------------------
  13. if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
  14. // error_reporting(E_ALL || ~E_NOTICE);
  15. error_reporting(E_ALL);
  16. ini_set('max_execution_time', 0);
  17. // error_reporting(0);
  18. define("APP_PATH", __DIR__ . '/../application/');
  19. define("DATA_PATH", __DIR__ . '/../data/');
  20. define("ROOT_PATH", dirname(__DIR__, 1));
  21. require(__DIR__ . '/../application/start.php');