"Trim arr"의 두 판 사이의 차이

(새 문서: <source lang='php'> function trim_arr($arr, $removeEmpty = false) { if($removeEmpty == 'REMOVE_EMPTY')$removeEmpty = true; $cnt = count($arr); for($i=$cnt-1;$i>-1;$i--) { $arr[$i...)
 
잔글 (로봇: 이중 넘겨주기 수정 → Lib arr.php)
 
(다른 사용자 한 명의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
<source lang='php'>
#넘겨주기 [[Lib arr.php]]
function trim_arr($arr, $removeEmpty = false) {
if($removeEmpty == 'REMOVE_EMPTY')$removeEmpty = true;
$cnt = count($arr);
for($i=$cnt-1;$i>-1;$i--) {
$arr[$i] = trim($arr[$i]);
if($removeEmpty)array_splice($arr, $i, 1);
}
return $arr;
}
 
</source>

2012년 11월 4일 (일) 22:42 기준 최신판

넘겨줄 대상:

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}