유용한 함수 array_filter
(PHP 4 >= 4.0.6, PHP 5)
array_filter — Filters elements of an array using a callback function
배열의 각 원소들을 콜백 함수의 인자로 각각 넣어서 함수의 결과값이 true(1) 인것만 뽑아서 배열로 반환.
array array_filter ( array $input [, callback $callback ] )
예제
function odd($var){
// returns whether the input integer is odd, $var 가 홀수 일경우 1 을 반환, 짝수일 경우 0 을 반환
return($var & 1);
}
function even($var){
// returns whether the input integer is even, $var 가 짝수 일경우 true 를 반환, 홀수 일경우 false 를 반환
return(!($var & 1));
}
$array1 = array("a"=>1, "b"=>2, "c"=>3, "d"=>4, "e"=>5);
$array2 = array(6, 7, 8, 9, 10, 11, 12);
echo "Odd :\n";
print_r(array_filter($array1, "odd"));
echo "Even:\n";
print_r(array_filter($array2, "even"));
결과
Odd :
Array
(
[a] => 1
[c] => 3
[e] => 5
)
Even:
Array
(
[0] => 6
[2] => 8
[4] => 10
[6] => 12
)
참고 - 콜백함수 란
간단하게 설명하면. 특정 함수 내에서 처리 과정 내에서 자동적으로 호출 되어 사용되는 함수
즉 array_filter 를 직접 구현해 보면
function array_filter_test($array, $function=''){
if (!is_array($array)) return Array();
$return = Array();
foreach($array as $k => $v){
if (!empty($function)) $result = call_user_func($function, $v);//여기서 콜백 함수가 사용됨
else $result = !empty($v);
if (!empty($result)) $return[$k] = $v;
}
return $return;
}
echo "Odd :\n";
print_r(array_filter_test($array1, "odd"));
echo "Even:\n";
print_r(array_filter_test($array2, "even"));
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5330 | 13년 전 | 772 | ||
| 5329 | 13년 전 | 708 | ||
| 5328 | 13년 전 | 640 | ||
| 5327 | 13년 전 | 884 | ||
| 5326 |
downmix
|
13년 전 | 1119 | |
| 5325 |
techer
|
13년 전 | 3144 | |
| 5324 |
techer
|
13년 전 | 971 | |
| 5323 | 13년 전 | 1178 | ||
| 5322 |
김준수사랑
|
13년 전 | 892 | |
| 5321 |
다케미카코
|
13년 전 | 754 | |
| 5320 |
|
13년 전 | 996 | |
| 5319 |
한번잘해보자
|
13년 전 | 1007 | |
| 5318 |
|
13년 전 | 1274 | |
| 5317 |
techer
|
13년 전 | 2705 | |
| 5316 |
techer
|
13년 전 | 3146 | |
| 5315 | 13년 전 | 1173 | ||
| 5314 |
티즈코리아
|
13년 전 | 1227 | |
| 5313 | 13년 전 | 708 | ||
| 5312 |
|
13년 전 | 1875 | |
| 5311 |
innis
|
13년 전 | 774 | |
| 5310 | 13년 전 | 861 | ||
| 5309 |
changho
|
13년 전 | 661 | |
| 5308 |
|
13년 전 | 1366 | |
| 5307 |
|
13년 전 | 802 | |
| 5306 | 13년 전 | 1185 | ||
| 5305 |
세상속으로
|
13년 전 | 1166 | |
| 5304 | 13년 전 | 670 | ||
| 5303 | 13년 전 | 2262 | ||
| 5302 | 13년 전 | 1398 | ||
| 5301 | 13년 전 | 1110 | ||
| 5300 |
프로프리랜서
|
13년 전 | 1087 | |
| 5299 | 13년 전 | 874 | ||
| 5298 | 13년 전 | 682 | ||
| 5297 |
나랑사귈래
|
13년 전 | 610 | |
| 5296 | 13년 전 | 1338 | ||
| 5295 | 13년 전 | 1120 | ||
| 5294 | 13년 전 | 729 | ||
| 5293 |
|
13년 전 | 5822 | |
| 5292 |
|
13년 전 | 793 | |
| 5291 | 13년 전 | 620 | ||
| 5290 | 13년 전 | 556 | ||
| 5289 | 13년 전 | 656 | ||
| 5288 | 13년 전 | 1172 | ||
| 5287 | 13년 전 | 763 | ||
| 5286 | 13년 전 | 976 | ||
| 5285 | 13년 전 | 1327 | ||
| 5284 |
미스홍당무
|
13년 전 | 862 | |
| 5283 |
basketball
|
13년 전 | 1765 | |
| 5282 | 13년 전 | 791 | ||
| 5281 |
|
13년 전 | 807 | |
| 5280 | 13년 전 | 1216 | ||
| 5279 | 13년 전 | 1387 | ||
| 5278 |
크라이스트
|
13년 전 | 2054 | |
| 5277 |
|
13년 전 | 733 | |
| 5276 |
그누보드환자이송
|
13년 전 | 789 | |
| 5275 | 13년 전 | 704 | ||
| 5274 | 13년 전 | 1374 | ||
| 5273 | 13년 전 | 2004 | ||
| 5272 | 13년 전 | 1121 | ||
| 5271 | 13년 전 | 1436 | ||
| 5270 | 13년 전 | 809 | ||
| 5269 | 13년 전 | 527 | ||
| 5268 | 13년 전 | 666 | ||
| 5267 | 13년 전 | 1193 | ||
| 5266 | 13년 전 | 1860 | ||
| 5265 | 13년 전 | 1629 | ||
| 5264 |
크라이스트
|
13년 전 | 1209 | |
| 5263 |
|
13년 전 | 1265 | |
| 5262 |
제이티37
|
13년 전 | 587 | |
| 5261 |
|
13년 전 | 781 | |
| 5260 |
quenya
|
13년 전 | 2072 | |
| 5259 | 13년 전 | 709 | ||
| 5258 | 13년 전 | 732 | ||
| 5257 |
크라이스트
|
13년 전 | 4600 | |
| 5256 | 13년 전 | 1255 | ||
| 5255 | 13년 전 | 3264 | ||
| 5254 |
|
13년 전 | 708 | |
| 5253 | 13년 전 | 770 | ||
| 5252 | 13년 전 | 768 | ||
| 5251 | 13년 전 | 722 | ||
| 5250 |
dudn1114
|
13년 전 | 1293 | |
| 5249 | 13년 전 | 673 | ||
| 5248 | 13년 전 | 743 | ||
| 5247 | 13년 전 | 2084 | ||
| 5246 | 13년 전 | 507 | ||
| 5245 | 13년 전 | 2198 | ||
| 5244 | 13년 전 | 1460 | ||
| 5243 |
|
13년 전 | 973 | |
| 5242 | 13년 전 | 770 | ||
| 5241 | 13년 전 | 1851 | ||
| 5240 |
|
13년 전 | 507 | |
| 5239 | 13년 전 | 1037 | ||
| 5238 | 13년 전 | 1225 | ||
| 5237 | 13년 전 | 1120 | ||
| 5236 | 13년 전 | 589 | ||
| 5235 |
|
13년 전 | 767 | |
| 5234 |
뭐먹고살지ㅠ
|
13년 전 | 1033 | |
| 5233 | 13년 전 | 3598 | ||
| 5232 | 13년 전 | 3141 | ||
| 5231 | 13년 전 | 3732 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기