<?php /*********************************************************** Filename: index.php Note : å‰å°é¡µ Version : 3.0 Author : PGcao Update : 2009-12-22 ***********************************************************/ $isdebug = isset($_REQUEST['sysdebug'])?1:0; @ini_set('display_errors', $isdebug); // 显示PHP输出错误 (1显示,0ä¸æ˜¾ç¤º) @error_reporting($isdebug?E_ALL | E_STRICT:0); // E_ALL | E_STRICT : E_ALL & ~E_NOTICE : E_ERROR | E_PARSE | E_STRICT unset($isdebug); header("Content-type: text/html; charset=utf-8");//文件头为UTF-8 define("APP_NAME","www");//应用模å—å称,模å—目录,å¯ä¾›åº”å„个æ’件调用 define("ROOT",str_replace("\\","/",dirname(__FILE__))."/");//æ ¹ç›®å½• define("LIBS",ROOT."sources/");//æ ¸å¿ƒåº“æ–‡ä»¶ define("APP_ROOT",ROOT."mvclibs/");//应用层文件 define("APP",APP_ROOT.APP_NAME."/");//å‰å° define("ROOT_DATA",ROOT."data/");//文本文件å˜å‚¨ç›®æ ‡ define("ROOT_HTML",ROOT."html/");//é™æ€é¡µç›®å½• define("ROOT_PLUGIN",ROOT."plugins/");//æ’件目录 define("PHPSYS_SET",true);//é…ç½®æ ‡è¯†å‚æ•° define("ROOT_JS",ROOT."statics/js/php/");//PHP-JS目录 if(is_file(ROOT_DATA.'stopattack.lock')){ $stopattackmod = file_get_contents(ROOT_DATA.'stopattack.lock'); if($stopattackmod)require_once(LIBS.'stopattack.sys.php'); unset($stopattackmod);//防CC攻击 } require_once(LIBS."index.inc.php"); ?>