12345678910111213141516171819202122232425 |
- <?php
- if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
- error_reporting(E_ALL);
- ini_set('max_execution_time', 0);
- define("APP_PATH", __DIR__ . '/../application/');
- define("DATA_PATH", __DIR__ . '/../data/');
- define("ROOT_PATH", dirname(__DIR__, 1));
- require(__DIR__ . '/../application/start.php');
|