Com str.php

Jmnote (토론 | 기여)님의 2012년 4월 13일 (금) 15:53 판 (새 문서: ==merge_space== <source lang='php'> function merge_space($str) { $repeat = true; while($repeat) { $temp = $str; $str = str_replace(' ', ' ', $str); if($temp == $str) $repeat ...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}