티스토리 뷰

/*
	작성자 : minov 
	작성일 : 20111228
	함수명 : 핸드폰 번호 '-' 처리 프로세스
	사용방법 : hp_indash(번호값)
*/
function hp_indash($num){
	
	if(strlen($num) > 11){
		$returnValue = $num;
	}else{
		$patthern = "/(^02.{0}|^01.{1}|[0-9]{3})([0-9]+)([0-9]{4})/";
		preg_match($patthern, $num, $matches, PREG_OFFSET_CAPTURE);

		$returnValue = $matches[1][0]."-".$matches[2][0]."-".$matches[3][0];
	}
	return $returnValue;
}

// 브라우져 구분 체크
function getBrowserType($log) { 
	$log = strtolower($log); 
	$list	= array( 
		"Name"	=>	"unknown", 
		"Version"	=>	"0.0.0", 
		"Agent"	=>	"unknown" 
	); 

	$list['Agent']	= $log; 

	$browsers = array( 
		"firefox", "msie", "opera", "chrome", "safari", 
		"mozilla", "seamonkey",    "konqueror", "netscape", 
		"gecko", "navigator", "mosaic", "lynx", "amaya", 
		"omniweb", "avant", "camino", "flock", "aol" 
	); 

	foreach($browsers as $browser) 
	{ 
		if (preg_match("#($browser)[/ ]?([0-9.]*)#", $log, $match)) 
		{ 
			$list['Name']	 = $match[1] ; 
			$list['Version']	= $match[2] ; 
			break; 
		} 
	} 
	return $list; 
}
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함