common.php
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

  1. <?php
  2. error_reporting(E_ERROR | E_WARNING | E_PARSE);
  3. set_magic_quotes_runtime(0);
  4. // 开启内部错误记录模式
  5. define("__DEBUG", 1);
  6. // 开启数据库调试模式
  7. define("__SQL_DEBUG", 1);
  8. // 数据库查询调试文件
  9. define("__SQL_LOGFILE", '../Debug/sql_logfile.txt');
  10. // 内部错误记录文件
  11. define("__ERROR_LOGFILE", '../Debug/internalError.txt');
  12. define("BASE_ROOT", dirname(__FILE__));
  13. $PHP_SELF = $_SERVER['PHP_SELF'] ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
  14. $timestamp = time();
  15. $__DB_CONNID = false; // DB连接标识,可以去掉
  16. define("BASE_PATH", substr($PHP_SELF, 0, strrpos($PHP_SELF, '/')).'/');
  17. include_once("../config.php");
  18. include_once("../classes/Global.php");
  19. include_once("../classes/DB.php");
  20. $session_id = $_COOKIE['sessionid'] ? $_COOKIE['sessionid'] : md5(uniqid(mt_rand(), true));
  21. if($_COOKIE['sessionid'] != $session_id)
  22. Cookie('sessionid', $session_id);
  23. @header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  24. @header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
  25. @header('Cache-Control: no-store, no-cache, must-revalidate');
  26. @header('Cache-Control: post-check=0, pre-check=0', false);
  27. @header('Pragma: no-cache');
  28. ?>