1234567891011121314151617181920212223 |
- <?php
- if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
- error_reporting(E_ALL);
- define("APP_PATH", __DIR__ . '/../application');
- define("DB", __DIR__ . '/../db');
- require(__DIR__.'/../daswork/start.php');
|