본문 바로가기

PHP

(함수) JS, CSS 소스 압축(줄바꿈, 들여쓰기, 주석 제거)

JS, CSS 소스 압축하기



http://www.refresh-sf.com/yui/


Html 소스 줄바꿈, 들여쓰기, 주석 제거



 *([^ ]*) */",  
		"/\" /",  
		"/ \"/",  
		"'/\*[^*]*\*/'"  
		);
    $replace = array (  
		">\\1<",  
		" ",  
		"",  
		"\"",  
		"\"",  
		""  
		);  
    $html = preg_replace($pattern, $replace, $html);
    return $html;
}
?>

'PHP' 카테고리의 다른 글

(함수) date()  (0) 2013.05.30
(함수) PHP5.3 Debug  (0) 2012.11.05
(합수)define() - 해당페이지 직접 접근 제어  (0) 2012.08.06
(함수) isset(), empty(), isnull() 비교  (0) 2012.08.06
(함수) getimagesize()  (0) 2012.07.10