摘要: <?php$_SERVER['PHP_SELF']; //当前正在执行脚本的文件名,与 document root相关。$_SERVER['argv']; //传递给该脚本的参数。$_SERVER['argc']; //包含传递给程序的命令行参数的个数(如果运行在命令行模式)。$_SERVER['GATEWAY_INTERFACE']; //服务器使用的 CGI 规范的版本。例如,“CGI/1.1”。$_SERVER['SERVER_NAME']; //当前运行脚本所在服务... 阅读全文
posted @ 2012-12-18 18:04 静静地守护那美好 阅读(214) 评论(0) 推荐(0) 编辑
摘要: <?phpfinal class UserLogin { public function __construct() { } public static function getUserInfo() { if (isset($_COOKIE["user_id"])&&$_COOKIE["user_id"]&&(trim($_COOKIE["user_id"])!="")) { if (isset($_SESSION["USER_INFO"])) return 阅读全文
posted @ 2012-12-18 15:08 静静地守护那美好 阅读(3699) 评论(0) 推荐(0) 编辑
摘要: PHP检测每一段代码执行时间 阅读全文
posted @ 2012-12-18 14:50 静静地守护那美好 阅读(3163) 评论(0) 推荐(0) 编辑
摘要: <?php/** * Miscellaneous utility methods. */final class Utils { private function __construct() { } /** * Get IP address * @return string IP address string */ public static function getIpAddress() { return $_SERVER["REMOTE_ADDR"]; } /*... 阅读全文
posted @ 2012-12-18 14:27 静静地守护那美好 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: <?phpfunction get_naps_bot(){ $useragent = strtolower($_SERVER['HTTP_USER_AGENT']); if (strpos($useragent, 'googlebot') !== false){ return 'Google'; } if (strpos($useragent, 'baiduspider') !== false){ return 'Baidu'; } if (strpos($useragent, 'msnbot' 阅读全文
posted @ 2012-12-18 12:06 静静地守护那美好 阅读(300) 评论(0) 推荐(0) 编辑