<?php

if(version_compare(PHP_VERSION,'5.3.0','<'))  
	die('require PHP > 5.3.0 !');

define('IN_APP', TRUE);
/* 编码定义 */
define('CHARSET', 'utf-8');
//程序目录

defined('DOC_ROOT') or define('DOC_ROOT', str_replace("\\", '/', dirname(__FILE__) ).'/');

/* 应用名称*/
define('APP_NAME', 'Application');

/* 应用目录*/
define('APP_PATH', DOC_ROOT.'Application/');

define('RUNTIME_PATH', DOC_ROOT.'Runtime/');

define('APP_DEBUG', true);

require DOC_ROOT.'ThinkPHP/ThinkPHP.php';