cari
Rumahphp教程PHP源码PHP获取客户端操作系统,浏览器,语言,IP,IP归属地等

1. [代码][PHP]代码    

<?php
class Client
{
	function CID_windows_detect_os($ua) {
		$os_name = $os_code = $os_ver = $pda_name = $pda_code = $pda_ver = null;
	
		if (preg_match(&#39;/Windows 95/i&#39;, $ua) || preg_match(&#39;/Win95/&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "95";
		} elseif (preg_match(&#39;/Windows NT 5.0/i&#39;, $ua) || preg_match(&#39;/Windows 2000/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "2000";
		} elseif (preg_match(&#39;/Win 9x 4.90/i&#39;, $ua) || preg_match(&#39;/Windows ME/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "ME";
		} elseif (preg_match(&#39;/Windows.98/i&#39;, $ua) || preg_match(&#39;/Win98/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "98";
		} elseif (preg_match(&#39;/Windows NT 6.0/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows_vista";
			$os_ver = "Vista";
		} elseif (preg_match(&#39;/Windows NT 6.1/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows_win7";
			$os_ver = "7";
		} elseif (preg_match(&#39;/Windows NT 6.2/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows_win8";
			$os_ver = "8";
		} elseif (preg_match(&#39;/Windows NT 5.1/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "XP";
		} elseif (preg_match(&#39;/Windows NT 5.2/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			if (preg_match(&#39;/Win64/i&#39;, $ua)) {
				$os_ver = "XP 64 bit";
			} else {
				$os_ver = "Server 2003";
			}
		}
		elseif (preg_match(&#39;/Mac_PowerPC/i&#39;, $ua)) {
			$os_name = "Mac OS";
			$os_code = "macos";
		}elseif (preg_match(&#39;/Windows Phone/i&#39;, $ua)) {
			$matches = explode(&#39;;&#39;,$ua);
			$os_name = $matches[2];
			$os_code = "windows_phone7";
		} elseif (preg_match(&#39;/Windows NT 4.0/i&#39;, $ua) || preg_match(&#39;/WinNT4.0/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "NT 4.0";
		} elseif (preg_match(&#39;/Windows NT/i&#39;, $ua) || preg_match(&#39;/WinNT/i&#39;, $ua)) {
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "NT";
		} elseif (preg_match(&#39;/Windows CE/i&#39;, $ua)) {
			list($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver) = self::CID_pda_detect_os($ua);
			$os_name = "Windows";
			$os_code = "windows";
			$os_ver = "CE";
			if (preg_match(&#39;/PPC/i&#39;, $ua)) {
				$os_name = "Microsoft PocketPC";
				$os_code = "windows";
				$os_ver = &#39;&#39;;
			}
			if (preg_match(&#39;/smartphone/i&#39;, $ua)) {
				$os_name = "Microsoft Smartphone";
				$os_code = "windows";
				$os_ver = &#39;&#39;;
			}
		} else{
			$os_name = &#39;Unknow Os&#39;;
			$os_code = &#39;other&#39;;
		}
	
		return array($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver);
	}
	
	function CID_unix_detect_os($ua) {
		$os_name = $os_ver = $os_code = null;
		if (preg_match(&#39;/Linux/i&#39;, $ua)) {
			$os_name = "Linux";
			$os_code = "linux";
			if (preg_match(&#39;#Debian#i&#39;, $ua)) {
				$os_code = "debian";
				$os_name = "Debian GNU/Linux";
			} elseif (preg_match(&#39;#Mandrake#i&#39;, $ua)) {
				$os_code = "mandrake";
				$os_name = "Mandrake Linux";
			} elseif (preg_match(&#39;#Kindle Fire#i&#39;,$ua)) {//for Kindle Fire
				$matches = explode(&#39;;&#39;,$ua);
				$os_code = "kindle";
				$matches2 = explode(&#39;)&#39;,$matches[4]);
				$os_name = $matches[2].$matches2[0];
			} elseif (preg_match(&#39;#Android#i&#39;,$ua)) {//Android
				$matches = explode(&#39;;&#39;,$ua);
				$os_code = "android";
				$matches2 = explode(&#39;)&#39;,$matches[4]);
				$os_name = $matches[2].$matches2[0];
			} elseif (preg_match(&#39;#SuSE#i&#39;, $ua)) {
				$os_code = "suse";
				$os_name = "SuSE Linux";
			} elseif (preg_match(&#39;#Novell#i&#39;, $ua)) {
				$os_code = "novell";
				$os_name = "Novell Linux";
			} elseif (preg_match(&#39;#Ubuntu#i&#39;, $ua)) {
				$os_code = "ubuntu";
				$os_name = "Ubuntu Linux";
			} elseif (preg_match(&#39;#Red ?Hat#i&#39;, $ua)) {
				$os_code = "redhat";
				$os_name = "RedHat Linux";
			} elseif (preg_match(&#39;#Gentoo#i&#39;, $ua)) {
				$os_code = "gentoo";
				$os_name = "Gentoo Linux";
			} elseif (preg_match(&#39;#Fedora#i&#39;, $ua)) {
				$os_code = "fedora";
				$os_name = "Fedora Linux";
			} elseif (preg_match(&#39;#MEPIS#i&#39;, $ua)) {
				$os_name = "MEPIS Linux";
			} elseif (preg_match(&#39;#Knoppix#i&#39;, $ua)) {
				$os_name = "Knoppix Linux";
			} elseif (preg_match(&#39;#Slackware#i&#39;, $ua)) {
				$os_code = "slackware";
				$os_name = "Slackware Linux";
			} elseif (preg_match(&#39;#Xandros#i&#39;, $ua)) {
				$os_name = "Xandros Linux";
			} elseif (preg_match(&#39;#Kanotix#i&#39;, $ua)) {
				$os_name = "Kanotix Linux";
			}
		} elseif (preg_match(&#39;/FreeBSD/i&#39;, $ua)) {
			$os_name = "FreeBSD";
			$os_code = "freebsd";
		} elseif (preg_match(&#39;/NetBSD/i&#39;, $ua)) {
			$os_name = "NetBSD";
			$os_code = "netbsd";
		} elseif (preg_match(&#39;/OpenBSD/i&#39;, $ua)) {
			$os_name = "OpenBSD";
			$os_code = "openbsd";
		} elseif (preg_match(&#39;/IRIX/i&#39;, $ua)) {
			$os_name = "SGI IRIX";
			$os_code = "sgi";
		} elseif (preg_match(&#39;/SunOS/i&#39;, $ua)) {
			$os_name = "Solaris";
			$os_code = "sun";
		} elseif (preg_match(&#39;#iPod.*.CPU.([a-zA-Z0-9.( _)]+)#i&#39;, $ua, $matches)) {
			$os_name = "iPod";
			$os_code = "iphone";
			$os_ver = $matches[1];
		} elseif (preg_match(&#39;#iPhone.*.CPU.([a-zA-Z0-9.( _)]+)#i&#39;, $ua, $matches)) {
			$os_name = "iPhone";
			$os_code = "iphone";
			$os_ver = $matches[1];
		} elseif (preg_match(&#39;#iPad.*.CPU.([a-zA-Z0-9.( _)]+)#i&#39;, $ua, $matches)) {
			$os_name = "iPad";
			$os_code = "ipad";
			$os_ver = $matches[1];
		} elseif (preg_match(&#39;/Mac OS X.([0-9. _]+)/i&#39;, $ua, $matches)) {
			$os_name = "Mac OS";
			$os_code = "macos";
			if(count(explode(7,$matches[1]))>1) $matches[1] = &#39;Lion &#39;.$matches[1];
			elseif(count(explode(8,$matches[1]))>1) $matches[1] = &#39;Mountain Lion &#39;.$matches[1];
			$os_ver = "X ".$matches[1];
		} elseif (preg_match(&#39;/Macintosh/i&#39;, $ua)) {
			$os_name = "Mac OS";
			$os_code = "macos";
		} elseif (preg_match(&#39;/Unix/i&#39;, $ua)) {
			$os_name = "UNIX";
			$os_code = "unix";
		} elseif (preg_match(&#39;/CrOS/i&#39;, $ua)){
			$os_name="Google Chrome OS";
			$os_code="chromeos";
		} elseif (preg_match(&#39;/Fedor.([0-9. _]+)/i&#39;, $ua, $matches)){
			$os_name="Fedora";
			$os_code="fedora";
			$os_ver = $matches[1];
		} else{
			$os_name = &#39;Unknow Os&#39;;
			$os_code = &#39;other&#39;;
		}
		 
		return array($os_name, $os_code, $os_ver);
	}
	
	function CID_pda_detect_os($ua) {
		$os_name = $os_code = $os_ver = $pda_name = $pda_code = $pda_ver = null;
		if (preg_match(&#39;#PalmOS#i&#39;, $ua)) {
			$os_name = "Palm OS";
			$os_code = "palm";
		} elseif (preg_match(&#39;#Windows CE#i&#39;, $ua)) {
			$os_name = "Windows CE";
			$os_code = "windows";
		} elseif (preg_match(&#39;#QtEmbedded#i&#39;, $ua)) {
			$os_name = "Qtopia";
			$os_code = "linux";
		} elseif (preg_match(&#39;#Zaurus#i&#39;, $ua)) {
			$os_name = "Linux";
			$os_code = "linux";
		} elseif (preg_match(&#39;#Symbian#i&#39;, $ua)) {
			$os_name = "Symbian OS";
			$os_code = "symbian";
		} elseif (preg_match(&#39;#PalmOS/sony/model#i&#39;, $ua)) {
			$pda_name = "Sony Clie";
			$pda_code = "sony";
		} elseif (preg_match(&#39;#Zaurus ([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Sharp Zaurus " . $matches[1];
			$pda_code = "zaurus";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#Series ([0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Series";
			$pda_code = "nokia";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#Nokia ([0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Nokia";
			$pda_code = "nokia";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#SIE-([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Siemens";
			$pda_code = "siemens";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#dopod([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Dopod";
			$pda_code = "dopod";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#o2 xda ([a-zA-Z0-9 ]+);#i&#39;, $ua, $matches)) {
			$pda_name = "O2 XDA";
			$pda_code = "o2";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#SEC-([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Samsung";
			$pda_code = "samsung";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#SonyEricsson ?([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "SonyEricsson";
			$pda_code = "sonyericsson";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#Kindle\/([a-zA-Z0-9. ×\(.\)]+)#i&#39;,$ua, $matches)) {//for Kindle
			$pda_name = "kindle";
			$pda_code = "kindle";
			$pda_ver = $matches[1];
		} else {
			$pda_name = &#39;Unknow Os&#39;;
			$pda_code = &#39;other&#39;;
		}
		 
		return array($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver);
	}
	
	function CID_detect_browser($ua) {
		$browser_name = $browser_code = $browser_ver = $os_name = $os_code = $os_ver = $pda_name = $pda_code = $pda_ver = null;
		$ua = preg_replace("/FunWebProducts/i", "", $ua);
		if (preg_match(&#39;#MovableType[ /]([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;MovableType&#39;;
			$browser_code = &#39;mt&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;#WordPress[ /]([a-zA-Z0-9.]*)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;WordPress&#39;;
			$browser_code = &#39;wp&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;#typepad[ /]([a-zA-Z0-9.]*)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;TypePad&#39;;
			$browser_code = &#39;typepad&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;#drupal#i&#39;, $ua)) {
			$browser_name = &#39;Drupal&#39;;
			$browser_code = &#39;drupal&#39;;
			$browser_ver = count($matches) > 0 ? $matches[1] : "";
		} elseif (preg_match(&#39;#symbianos/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$os_name = "SymbianOS";
			$os_ver = $matches[1];
			$os_code = &#39;symbian&#39;;
		} elseif (preg_match(&#39;#avantbrowser.com#i&#39;, $ua)) {
			$browser_name = &#39;Avant Browser&#39;;
			$browser_code = &#39;avantbrowser&#39;;
		} elseif (preg_match(&#39;#(Camino|Chimera)[ /]([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Camino&#39;;
			$browser_code = &#39;camino&#39;;
			$browser_ver = $matches[2];
			$os_name = "Mac OS";
			$os_code = "macos";
			$os_ver = "X";
		} elseif (preg_match(&#39;#anonymouse#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Anonymouse&#39;;
			$browser_code = &#39;anonymouse&#39;;
		} elseif (preg_match(&#39;#PHP#&#39;, $ua, $matches)) {
			$browser_name = &#39;PHP&#39;;
			$browser_code = &#39;php&#39;;
		} elseif (preg_match(&#39;#danger hiptop#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Danger HipTop&#39;;
			$browser_code = &#39;danger&#39;;
		} elseif (preg_match(&#39;#w3m/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;W3M&#39;;
			$browser_code = &#39;w3m&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;#Shiira[/]([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Shiira&#39;;
			$browser_code = &#39;shiira&#39;;
			$browser_ver = $matches[1];
			$os_name = "Mac OS";
			$os_code = "macos";
			$os_ver = "X";
		} elseif (preg_match(&#39;#Dillo[ /]([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Dillo&#39;;
			$browser_code = &#39;dillo&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;#Epiphany/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Epiphany&#39;;
			$browser_code = &#39;epiphany&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
		} elseif (preg_match(&#39;#UP.Browser/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Openwave UP.Browser&#39;;
			$browser_code = &#39;openwave&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;#DoCoMo/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;DoCoMo&#39;;
			$browser_code = &#39;docomo&#39;;
			$browser_ver = $matches[1];
			if ($browser_ver == &#39;1.0&#39;) {
				preg_match(&#39;#DoCoMo/([a-zA-Z0-9.]+)/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches);
				$browser_ver = $matches[2];
			} elseif ($browser_ver == &#39;2.0&#39;) {
				preg_match(&#39;#DoCoMo/([a-zA-Z0-9.]+) ([a-zA-Z0-9.]+)#i&#39;, $ua, $matches);
				$browser_ver = $matches[2];
			}
		} elseif (preg_match(&#39;#(SeaMonkey)/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Mozilla SeaMonkey&#39;;
			$browser_code = &#39;seamonkey&#39;;
			$browser_ver = $matches[2];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Kazehakase/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Kazehakase&#39;;
			$browser_code = &#39;kazehakase&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Flock/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Flock&#39;;
			$browser_code = &#39;flock&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#(Firefox|Phoenix|Firebird|BonEcho|GranParadiso|Minefield|Iceweasel)/4([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Mozilla Firefox&#39;;
			$browser_code = &#39;firefox&#39;;
			$browser_ver = &#39;4&#39;.$matches[2];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#(Firefox|Phoenix|Firebird|BonEcho|GranParadiso|Minefield|Iceweasel)/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Mozilla Firefox&#39;;
			$browser_code = &#39;firefox&#39;;
			$browser_ver = $matches[2];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Minimo/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Minimo&#39;;
			$browser_code = &#39;mozilla&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#MultiZilla/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;MultiZilla&#39;;
			$browser_code = &#39;mozilla&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#SE 2([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;SouGou Browser&#39;;
			$browser_code = &#39;sogou&#39;;
			$browser_ver = &#39;2&#39;.$matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#baidubrowser ([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;BaiDu Browser&#39;;
			$browser_code = &#39;baidubrowser&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#360([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;360 Browser&#39;;
			$browser_code = &#39;360se&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#QQBrowser/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;QQ Browser&#39;;
			$browser_code = &#39;qqbrowser&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;/PSP \(PlayStation Portable\)\; ([a-zA-Z0-9.]+)/&#39;, $ua, $matches)) {
			$pda_name = "Sony PSP";
			$pda_code = "sony-psp";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#Galeon/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Galeon&#39;;
			$browser_code = &#39;galeon&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
		} elseif (preg_match(&#39;#iCab/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;iCab&#39;;
			$browser_code = &#39;icab&#39;;
			$browser_ver = $matches[1];
			$os_name = "Mac OS";
			$os_code = "macos";
			if (preg_match(&#39;#Mac OS X#i&#39;, $ua)) {
				$os_ver = "X";
			}
		} elseif (preg_match(&#39;#K-Meleon/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;K-Meleon&#39;;
			$browser_code = &#39;kmeleon&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Lynx/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Lynx&#39;;
			$browser_code = &#39;lynx&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
		} elseif (preg_match(&#39;#Links \\(([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Links&#39;;
			$browser_code = &#39;lynx&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
		} elseif (preg_match(&#39;#ELinks[/ ]([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;ELinks&#39;;
			$browser_code = &#39;lynx&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
		} elseif (preg_match(&#39;#ELinks \\(([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;ELinks&#39;;
			$browser_code = &#39;lynx&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
		} elseif (preg_match(&#39;#Konqueror/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Konqueror&#39;;
			$browser_code = &#39;konqueror&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			if (!$os_name) {
				list($os_name, $os_code, $os_ver) = self::CID_pda_detect_os($ua);
			}
		} elseif (preg_match(&#39;#NetPositive/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;NetPositive&#39;;
			$browser_code = &#39;netpositive&#39;;
			$browser_ver = $matches[1];
			$os_name = "BeOS";
			$os_code = "beos";
		} elseif (preg_match(&#39;#OmniWeb#i&#39;, $ua)) {
			$browser_name = &#39;OmniWeb&#39;;
			$browser_code = &#39;omniweb&#39;;
			$os_name = "Mac OS";
			$os_code = "macos";
			$os_ver = "X";
		} elseif (preg_match(&#39;#Chrome/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Google Chrome&#39;; $browser_code = &#39;chrome&#39;; $browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Arora/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Arora&#39;;
			$browser_code = &#39;arora&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Maxthon( |\/)([a-zA-Z0-9.]+)#i&#39;, $ua,$matches)) {
			$browser_name = &#39;Maxthon&#39;;
			$browser_code = &#39;maxthon&#39;;
			$browser_ver = $matches[2];
			if (preg_match(&#39;/Win/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#CriOS/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Chrome for iOS&#39;;
			$browser_code = &#39;crios&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Safari/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Safari&#39;;
			$browser_code = &#39;safari&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#opera mini#i&#39;, $ua)) {
			$browser_name = &#39;Opera Mini&#39;;
			$browser_code = &#39;opera&#39;;
			preg_match(&#39;#Opera/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches);
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#Opera.(.*)Version[ /]([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Opera&#39;;
			$browser_code = &#39;opera&#39;;
			$browser_ver = $matches[2];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
			if (!$os_name) {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
			if (!$os_name) {
				list($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver) = self::CID_pda_detect_os($ua);
			}
			if (!$os_name) {
				if (preg_match(&#39;/Wii/i&#39;, $ua)) {
					$os_name = "Nintendo Wii";
					$os_code = "nintendo-wii";
				}
			}
		} elseif (preg_match(&#39;#Opera/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Opera Mini&#39;;
			$browser_code = &#39;opera&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#WebPro/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;WebPro&#39;;
			$browser_code = &#39;webpro&#39;;
			$browser_ver = $matches[1];
			$os_name = "PalmOS";
			$os_code = "palmos";
		} elseif (preg_match(&#39;#WebPro#i&#39;, $ua, $matches)) {
			$browser_name = &#39;WebPro&#39;;
			$browser_code = &#39;webpro&#39;;
			$os_name = "PalmOS";
			$os_code = "palmos";
		} elseif (preg_match(&#39;#Netfront/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Netfront&#39;;
			$browser_code = &#39;netfront&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver) = self::CID_pda_detect_os($ua);
		} elseif (preg_match(&#39;#Xiino/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Xiino&#39;;
			$browser_code = &#39;xiino&#39;;
			$browser_ver = $matches[1];
		} elseif (preg_match(&#39;/wp-blackberry\/([a-zA-Z0-9.]*)/i&#39;, $ua, $matches)) {
			$browser_name = "WordPress for BlackBerry";
			$browser_code = "wordpress";
			$browser_ver = $matches[1];
			$pda_name = "BlackBerry";
			$pda_code = "blackberry";
		} elseif (preg_match(&#39;#Blackberry([0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Blackberry";
			$pda_code = "blackberry";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#Blackberry#i&#39;, $ua)) {
			$pda_name = "Blackberry";
			$pda_code = "blackberry";
		} elseif (preg_match(&#39;#SPV ([0-9a-zA-Z.]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Orange SPV";
			$pda_code = "orange";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#LGE-([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "LG";
			$pda_code = &#39;lg&#39;;
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#MOT-([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Motorola";
			$pda_code = &#39;motorola&#39;;
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#Nokia ?([0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Nokia";
			$pda_code = "nokia";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#NokiaN-Gage#i&#39;, $ua)) {
			$pda_name = "Nokia";
			$pda_code = "nokia";
			$pda_ver = "N-Gage";
		} elseif (preg_match(&#39;#Blazer[ /]?([a-zA-Z0-9.]*)#i&#39;, $ua, $matches)) {
			$browser_name = "Blazer";
			$browser_code = "blazer";
			$browser_ver = $matches[1];
			$os_name = "Palm OS";
			$os_code = "palm";
		} elseif (preg_match(&#39;#SIE-([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Siemens";
			$pda_code = "siemens";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#SEC-([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Samsung";
			$pda_code = "samsung";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;/wp-iphone\/([a-zA-Z0-9.]*)/i&#39;, $ua, $matches)) {
			$browser_name = "WordPress for iOS";
			$browser_code = "wordpress";
			$browser_ver = $matches[1];
			$pda_name = "iPhone & iPad";
			$pda_code = "ipad";
		} elseif (preg_match(&#39;/wp-android\/([a-zA-Z0-9.]*)/i&#39;, $ua, $matches)) {
			$browser_name = "WordPress for Android";
			$browser_code = "wordpress";
			$browser_ver = $matches[1];
			$pda_name = "Android";
			$pda_code = "android";
		} elseif (preg_match(&#39;/wp-windowsphone\/([a-zA-Z0-9.]*)/i&#39;, $ua, $matches)) {
			$browser_name = "WordPress for Windows Phone 7";
			$browser_code = "wordpress";
			$browser_ver = $matches[1];
			$pda_name = "Windows Phone 7";
			$pda_code = "windows_phone7";
		} elseif (preg_match(&#39;/wp-nokia\/([a-zA-Z0-9.]*)/i&#39;, $ua, $matches)) {
			$browser_name = "WordPress for Nokia";
			$browser_code = "wordpress";
			$browser_ver = $matches[1];
			$pda_name = "Nokia";
			$pda_code = "nokia";
		} elseif (preg_match(&#39;#SAMSUNG-(S.H-[a-zA-Z0-9_/.]+)#i&#39;, $ua, $matches)) {
			$pda_name = "Samsung";
			$pda_code = "samsung";
			$pda_ver = $matches[1];
			if (preg_match(&#39;#(j2me|midp)#i&#39;, $ua)) {
				$browser_name = "J2ME/MIDP Browser";
				$browser_code = "j2me";
			}
		} elseif (preg_match(&#39;#SonyEricsson ?([a-zA-Z0-9]+)#i&#39;, $ua, $matches)) {
			$pda_name = "SonyEricsson";
			$pda_code = "sonyericsson";
			$pda_ver = $matches[1];
		} elseif (preg_match(&#39;#(j2me|midp)#i&#39;, $ua)) {
			$browser_name = "J2ME/MIDP Browser";
			$browser_code = "j2me";
			// mice
		} elseif (preg_match(&#39;/GreenBrowser/i&#39;, $ua)) {
			$browser_name = &#39;GreenBrowser&#39;;
			$browser_code = &#39;greenbrowser&#39;;
			if (preg_match(&#39;/Win/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#TencentTraveler ([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;腾讯TT浏览器&#39;;
			$browser_code = &#39;tencenttraveler&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#UCWEB([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;UCWEB&#39;;
			$browser_code = &#39;ucweb&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#MSIE ([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Internet Explorer&#39;;
			$browser_ver = $matches[1];
			if ( strpos($browser_ver, &#39;7&#39;) !== false || strpos($browser_ver, &#39;8&#39;) !== false)
				$browser_code = &#39;ie8&#39;;
			elseif ( strpos($browser_ver, &#39;9&#39;) !== false)
			$browser_code = &#39;ie9&#39;;
			elseif ( strpos($browser_ver, &#39;10&#39;) !== false)
			$browser_code = &#39;ie10&#39;;
			else
				$browser_code = &#39;ie&#39;;
			list($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver) = self::CID_windows_detect_os($ua);
		} elseif (preg_match(&#39;#Universe/([0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Universe&#39;;
			$browser_code = &#39;universe&#39;;
			$browser_ver = $matches[1];
			list($os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver) = self::CID_pda_detect_os($ua);
		}elseif (preg_match(&#39;#Netscape[0-9]?/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Netscape&#39;;
			$browser_code = &#39;netscape&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#^Mozilla/5.0#i&#39;, $ua) && preg_match(&#39;#rv:([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Mozilla&#39;;
			$browser_code = &#39;mozilla&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Windows/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		} elseif (preg_match(&#39;#^Mozilla/([a-zA-Z0-9.]+)#i&#39;, $ua, $matches)) {
			$browser_name = &#39;Netscape Navigator&#39;;
			$browser_code = &#39;netscape&#39;;
			$browser_ver = $matches[1];
			if (preg_match(&#39;/Win/i&#39;, $ua)) {
				list($os_name, $os_code, $os_ver) = self::CID_windows_detect_os($ua);
			} else {
				list($os_name, $os_code, $os_ver) = self::CID_unix_detect_os($ua);
			}
		}else{
			$browser_name = &#39;Unknow Browser&#39;;
			$browser_code = &#39;null&#39;;
		}
	
		if (!$pda_name && !$os_name){
			$pda_name = &#39;Unknow Os&#39;;
			$pda_code = &#39;other&#39;;
			$os_name = &#39;Unknow Os&#39;;
			$os_code = &#39;other&#39;;
		}
		return array($browser_name, $browser_code, $browser_ver, $os_name, $os_code, $os_ver, $pda_name, $pda_code, $pda_ver);
	}
  ////获得访客浏览器类型
	function Get_Useragent(){
		if(!empty($_SERVER[&#39;HTTP_USER_AGENT&#39;])){
			return self::CID_detect_browser($_SERVER[&#39;HTTP_USER_AGENT&#39;]);
   		}
   		else{
   			return array();
   		} 
  }
  
  ////获得访客真实ip
	function Get_Ip_Addr(){
   		if(!empty($_SERVER["HTTP_CLIENT_IP"])){   
      		$ip = $_SERVER["HTTP_CLIENT_IP"];
   		}
   		if(!empty($_SERVER[&#39;HTTP_X_FORWARDED_FOR&#39;])){ //获取代理ip
    		$ips = explode(&#39;,&#39;,$_SERVER[&#39;HTTP_X_FORWARDED_FOR&#39;]);
   		}
   		if($ip){
      		$ips = array_unshift($ips,$ip); 
   		}
   		$count = count($ips);
		for($i=0;$i<$count;$i++){   
	     	if(!preg_match("/^(10|172\.16|192\.168)\./i",$ips[$i])){//排除局域网ip
	      		$ip = $ips[$i];
	      		break;    
	      	}  
		}  
   		$tip = empty($_SERVER[&#39;REMOTE_ADDR&#39;]) ? $ip : $_SERVER[&#39;REMOTE_ADDR&#39;]; 
   		if($tip=="127.0.0.1"){ //获得本地真实IP
      		return self::get_onlineip();   
   		}
   		else{
      		return $tip; 
   		}
  }
  
  ////获得本地真实IP
  function get_onlineip() {
		$ip_json = @file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=myip");
		$ip_arr=json_decode(stripslashes($ip_json),1);
		if($ip_arr[&#39;code&#39;]==0)
		{
			return $ip_arr[&#39;data&#39;][&#39;ip&#39;];
		}
		
   }
  
  ////根据ip获得访客所在地地名
	function Get_Ip_From($ip=&#39;&#39;){
		if(empty($ip)){
			$ip = self::Getip();    
		}
   		$ip_json=@file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=".$ip);//根据taobao ip
   		$ip_arr=json_decode(stripslashes($ip_json),1);
   		if($ip_arr[&#39;code&#39;]==0)
   		{
   			return $ip_arr[&#39;data&#39;];
   		}
   		else
   		{
   			return false;
   		}
   		
	} 

}

                   

                   

Kenyataan
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn

Alat AI Hot

Undresser.AI Undress

Undresser.AI Undress

Apl berkuasa AI untuk mencipta foto bogel yang realistik

AI Clothes Remover

AI Clothes Remover

Alat AI dalam talian untuk mengeluarkan pakaian daripada foto.

Undress AI Tool

Undress AI Tool

Gambar buka pakaian secara percuma

Clothoff.io

Clothoff.io

Penyingkiran pakaian AI

AI Hentai Generator

AI Hentai Generator

Menjana ai hentai secara percuma.

Artikel Panas

R.E.P.O. Kristal tenaga dijelaskan dan apa yang mereka lakukan (kristal kuning)
1 bulan yang laluBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Tetapan grafik terbaik
1 bulan yang laluBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Cara Memperbaiki Audio Jika anda tidak dapat mendengar sesiapa
1 bulan yang laluBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Arahan sembang dan cara menggunakannya
1 bulan yang laluBy尊渡假赌尊渡假赌尊渡假赌

Alat panas

SecLists

SecLists

SecLists ialah rakan penguji keselamatan muktamad. Ia ialah koleksi pelbagai jenis senarai yang kerap digunakan semasa penilaian keselamatan, semuanya di satu tempat. SecLists membantu menjadikan ujian keselamatan lebih cekap dan produktif dengan menyediakan semua senarai yang mungkin diperlukan oleh penguji keselamatan dengan mudah. Jenis senarai termasuk nama pengguna, kata laluan, URL, muatan kabur, corak data sensitif, cangkerang web dan banyak lagi. Penguji hanya boleh menarik repositori ini ke mesin ujian baharu dan dia akan mempunyai akses kepada setiap jenis senarai yang dia perlukan.

Versi Mac WebStorm

Versi Mac WebStorm

Alat pembangunan JavaScript yang berguna

mPDF

mPDF

mPDF ialah perpustakaan PHP yang boleh menjana fail PDF daripada HTML yang dikodkan UTF-8. Pengarang asal, Ian Back, menulis mPDF untuk mengeluarkan fail PDF "dengan cepat" dari tapak webnya dan mengendalikan bahasa yang berbeza. Ia lebih perlahan dan menghasilkan fail yang lebih besar apabila menggunakan fon Unicode daripada skrip asal seperti HTML2FPDF, tetapi menyokong gaya CSS dsb. dan mempunyai banyak peningkatan. Menyokong hampir semua bahasa, termasuk RTL (Arab dan Ibrani) dan CJK (Cina, Jepun dan Korea). Menyokong elemen peringkat blok bersarang (seperti P, DIV),

VSCode Windows 64-bit Muat Turun

VSCode Windows 64-bit Muat Turun

Editor IDE percuma dan berkuasa yang dilancarkan oleh Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) ialah aplikasi web PHP/MySQL yang sangat terdedah. Matlamat utamanya adalah untuk menjadi bantuan bagi profesional keselamatan untuk menguji kemahiran dan alatan mereka dalam persekitaran undang-undang, untuk membantu pembangun web lebih memahami proses mengamankan aplikasi web, dan untuk membantu guru/pelajar mengajar/belajar dalam persekitaran bilik darjah Aplikasi web keselamatan. Matlamat DVWA adalah untuk mempraktikkan beberapa kelemahan web yang paling biasa melalui antara muka yang mudah dan mudah, dengan pelbagai tahap kesukaran. Sila ambil perhatian bahawa perisian ini