유용한 함수 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"));
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 6430 | 12년 전 | 963 | ||
| 6429 | 12년 전 | 9095 | ||
| 6428 | 12년 전 | 592 | ||
| 6427 |
제이티37
|
12년 전 | 1564 | |
| 6426 |
프로프리랜서
|
12년 전 | 1144 | |
| 6425 |
프로프리랜서
|
12년 전 | 1603 | |
| 6424 |
프로프리랜서
|
12년 전 | 1803 | |
| 6423 | 12년 전 | 997 | ||
| 6422 |
퍼블리셔지노군
|
12년 전 | 1567 | |
| 6421 | 12년 전 | 2204 | ||
| 6420 |
|
12년 전 | 1333 | |
| 6419 |
|
12년 전 | 1283 | |
| 6418 | 12년 전 | 1180 | ||
| 6417 |
senseme
|
12년 전 | 7416 | |
| 6416 |
senseme
|
12년 전 | 1320 | |
| 6415 |
senseme
|
12년 전 | 1185 | |
| 6414 |
senseme
|
12년 전 | 1959 | |
| 6413 |
senseme
|
12년 전 | 958 | |
| 6412 |
senseme
|
12년 전 | 1481 | |
| 6411 |
senseme
|
12년 전 | 1087 | |
| 6410 |
senseme
|
12년 전 | 1038 | |
| 6409 |
PASKRAN
|
12년 전 | 2812 | |
| 6408 | 12년 전 | 10795 | ||
| 6407 | 12년 전 | 2987 | ||
| 6406 |
프로프리랜서
|
12년 전 | 2824 | |
| 6405 |
프로프리랜서
|
12년 전 | 1365 | |
| 6404 |
프로프리랜서
|
12년 전 | 2720 | |
| 6403 |
프로프리랜서
|
12년 전 | 816 | |
| 6402 |
프로프리랜서
|
12년 전 | 1720 | |
| 6401 |
프로프리랜서
|
12년 전 | 1138 | |
| 6400 |
프로프리랜서
|
12년 전 | 1458 | |
| 6399 |
프로프리랜서
|
12년 전 | 1179 | |
| 6398 |
프로프리랜서
|
12년 전 | 1478 | |
| 6397 |
프로프리랜서
|
12년 전 | 3596 | |
| 6396 | 12년 전 | 1865 | ||
| 6395 | 12년 전 | 914 | ||
| 6394 |
|
12년 전 | 5236 | |
| 6393 |
제이티37
|
12년 전 | 1195 | |
| 6392 |
songsinica
|
12년 전 | 1191 | |
| 6391 |
|
12년 전 | 3365 | |
| 6390 |
|
12년 전 | 1617 | |
| 6389 | 12년 전 | 4853 | ||
| 6388 |
스누피사랑
|
12년 전 | 5429 | |
| 6387 | 12년 전 | 1837 | ||
| 6386 | 12년 전 | 3049 | ||
| 6385 |
희망과열정
|
12년 전 | 922 | |
| 6384 | 12년 전 | 3284 | ||
| 6383 | 12년 전 | 10592 | ||
| 6382 |
|
12년 전 | 5784 | |
| 6381 |
SugarSkull
|
12년 전 | 1023 | |
| 6380 | 12년 전 | 771 | ||
| 6379 |
|
12년 전 | 1974 | |
| 6378 | 12년 전 | 1553 | ||
| 6377 | 12년 전 | 490 | ||
| 6376 |
후라보노보노
|
12년 전 | 1329 | |
| 6375 | 12년 전 | 2860 | ||
| 6374 | 12년 전 | 825 | ||
| 6373 | 12년 전 | 2366 | ||
| 6372 |
takumi22
|
12년 전 | 1237 | |
| 6371 |
개초보제이
|
12년 전 | 770 | |
| 6370 |
고급자가되고
|
12년 전 | 1454 | |
| 6369 | 12년 전 | 875 | ||
| 6368 | 12년 전 | 3175 | ||
| 6367 | 12년 전 | 1870 | ||
| 6366 | 12년 전 | 2872 | ||
| 6365 |
lilyosia
|
12년 전 | 1788 | |
| 6364 | 12년 전 | 1051 | ||
| 6363 | 12년 전 | 1582 | ||
| 6362 | 12년 전 | 2728 | ||
| 6361 | 12년 전 | 2552 | ||
| 6360 | 12년 전 | 998 | ||
| 6359 | 12년 전 | 2100 | ||
| 6358 |
|
12년 전 | 1784 | |
| 6357 |
에헤라디야자진방아를돌려라
|
12년 전 | 775 | |
| 6356 | 12년 전 | 2072 | ||
| 6355 | 12년 전 | 3780 | ||
| 6354 | 12년 전 | 3087 | ||
| 6353 | 12년 전 | 1542 | ||
| 6352 | 12년 전 | 7768 | ||
| 6351 | 12년 전 | 2531 | ||
| 6350 | 12년 전 | 2792 | ||
| 6349 | 12년 전 | 1871 | ||
| 6348 | 12년 전 | 3541 | ||
| 6347 | 12년 전 | 1443 | ||
| 6346 | 12년 전 | 1179 | ||
| 6345 | 12년 전 | 1832 | ||
| 6344 | 12년 전 | 1404 | ||
| 6343 |
프로프리랜서
|
12년 전 | 2058 | |
| 6342 |
프로프리랜서
|
12년 전 | 1373 | |
| 6341 |
프로프리랜서
|
12년 전 | 1810 | |
| 6340 |
프로프리랜서
|
12년 전 | 1891 | |
| 6339 |
프로프리랜서
|
12년 전 | 1329 | |
| 6338 |
프로프리랜서
|
12년 전 | 1565 | |
| 6337 | 12년 전 | 5252 | ||
| 6336 |
프로프리랜서
|
12년 전 | 1624 | |
| 6335 |
프로프리랜서
|
12년 전 | 948 | |
| 6334 |
프로프리랜서
|
12년 전 | 1321 | |
| 6333 |
프로프리랜서
|
12년 전 | 2437 | |
| 6332 | 12년 전 | 1095 | ||
| 6331 |
돗단배123
|
12년 전 | 1416 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기