Com str.php

Jmnote (토론 | 기여)님의 2012년 4월 13일 (금) 15:53 판 (Merge space 문서를 Com str.php(으)로 옮김)

merge_space

function merge_space($str) {
	$repeat = true;
	while($repeat) {
		$temp = $str;
		$str = str_replace('  ', ' ', $str);
		if($temp == $str) $repeat = false;
	}
	return $str;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}