common.php
资源名称:p2p_vod.rar [点击查看]
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:1k
源码类别:
P2P编程
开发平台:
Visual C++
- <?php
- error_reporting(E_ERROR | E_WARNING | E_PARSE);
- set_magic_quotes_runtime(0);
- // 开启内部错误记录模式
- define("__DEBUG", 1);
- // 开启数据库调试模式
- define("__SQL_DEBUG", 1);
- // 数据库查询调试文件
- define("__SQL_LOGFILE", '../Debug/sql_logfile.txt');
- // 内部错误记录文件
- define("__ERROR_LOGFILE", '../Debug/internalError.txt');
- define("BASE_ROOT", dirname(__FILE__));
- $PHP_SELF = $_SERVER['PHP_SELF'] ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
- $timestamp = time();
- $__DB_CONNID = false; // DB连接标识,可以去掉
- define("BASE_PATH", substr($PHP_SELF, 0, strrpos($PHP_SELF, '/')).'/');
- include_once("../config.php");
- include_once("../classes/Global.php");
- include_once("../classes/DB.php");
- $session_id = $_COOKIE['sessionid'] ? $_COOKIE['sessionid'] : md5(uniqid(mt_rand(), true));
- if($_COOKIE['sessionid'] != $session_id)
- Cookie('sessionid', $session_id);
- @header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
- @header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
- @header('Cache-Control: no-store, no-cache, must-revalidate');
- @header('Cache-Control: post-check=0, pre-check=0', false);
- @header('Pragma: no-cache');
- ?>