유용한 함수 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"));
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5430 | 13년 전 | 1456 | ||
| 5429 |
phpman
|
13년 전 | 861 | |
| 5428 | 13년 전 | 1257 | ||
| 5427 |
phpman
|
13년 전 | 853 | |
| 5426 |
PHPㅡASP프로그래머
|
13년 전 | 1089 | |
| 5425 | 13년 전 | 798 | ||
| 5424 | 13년 전 | 741 | ||
| 5423 | 13년 전 | 742 | ||
| 5422 | 13년 전 | 1838 | ||
| 5421 |
PHPㅡASP프로그래머
|
13년 전 | 810 | |
| 5420 |
|
13년 전 | 1636 | |
| 5419 | 13년 전 | 826 | ||
| 5418 | 13년 전 | 712 | ||
| 5417 | 13년 전 | 628 | ||
| 5416 | 13년 전 | 995 | ||
| 5415 | 13년 전 | 792 | ||
| 5414 | 13년 전 | 738 | ||
| 5413 | 13년 전 | 816 | ||
| 5412 | 13년 전 | 1375 | ||
| 5411 | 13년 전 | 896 | ||
| 5410 | 13년 전 | 1290 | ||
| 5409 | 13년 전 | 4279 | ||
| 5408 | 13년 전 | 1001 | ||
| 5407 |
ckflower
|
13년 전 | 2450 | |
| 5406 |
ddokkani
|
13년 전 | 1402 | |
| 5405 | 13년 전 | 1604 | ||
| 5404 | 13년 전 | 679 | ||
| 5403 | 13년 전 | 711 | ||
| 5402 |
밤거리빵빵
|
13년 전 | 6030 | |
| 5401 |
PHPㅡASP프로그래머
|
13년 전 | 989 | |
| 5400 |
|
13년 전 | 1222 | |
| 5399 | 13년 전 | 5018 | ||
| 5398 |
부산아무개
|
13년 전 | 1668 | |
| 5397 | 13년 전 | 2463 | ||
| 5396 | 13년 전 | 1860 | ||
| 5395 | 13년 전 | 1069 | ||
| 5394 | 13년 전 | 1152 | ||
| 5393 | 13년 전 | 1057 | ||
| 5392 |
아르toria
|
13년 전 | 775 | |
| 5391 |
|
13년 전 | 1155 | |
| 5390 |
디지털홍익인간
|
13년 전 | 7718 | |
| 5389 | 13년 전 | 3121 | ||
| 5388 | 13년 전 | 880 | ||
| 5387 |
WaaNee
|
13년 전 | 1923 | |
| 5386 | 13년 전 | 2119 | ||
| 5385 | 13년 전 | 4635 | ||
| 5384 | 13년 전 | 955 | ||
| 5383 | 13년 전 | 2145 | ||
| 5382 | 13년 전 | 677 | ||
| 5381 |
JacobJeon
|
13년 전 | 1093 | |
| 5380 | 13년 전 | 1145 | ||
| 5379 | 13년 전 | 688 | ||
| 5378 | 13년 전 | 10479 | ||
| 5377 | 13년 전 | 879 | ||
| 5376 | 13년 전 | 1468 | ||
| 5375 | 13년 전 | 849 | ||
| 5374 | 13년 전 | 854 | ||
| 5373 | 13년 전 | 2072 | ||
| 5372 | 13년 전 | 1702 | ||
| 5371 |
|
13년 전 | 1651 | |
| 5370 | 13년 전 | 2915 | ||
| 5369 |
아자12345
|
13년 전 | 1023 | |
| 5368 | 13년 전 | 718 | ||
| 5367 | 13년 전 | 1094 | ||
| 5366 | 13년 전 | 2159 | ||
| 5365 | 13년 전 | 1577 | ||
| 5364 | 13년 전 | 1106 | ||
| 5363 |
|
13년 전 | 1379 | |
| 5362 | 13년 전 | 837 | ||
| 5361 | 13년 전 | 1400 | ||
| 5360 | 13년 전 | 764 | ||
| 5359 | 13년 전 | 1409 | ||
| 5358 | 13년 전 | 1241 | ||
| 5357 | 13년 전 | 1640 | ||
| 5356 | 13년 전 | 1130 | ||
| 5355 |
techer
|
13년 전 | 1379 | |
| 5354 |
|
13년 전 | 1031 | |
| 5353 | 13년 전 | 746 | ||
| 5352 | 13년 전 | 835 | ||
| 5351 | 13년 전 | 1215 | ||
| 5350 | 13년 전 | 746 | ||
| 5349 |
|
13년 전 | 1445 | |
| 5348 | 13년 전 | 854 | ||
| 5347 | 13년 전 | 760 | ||
| 5346 | 13년 전 | 878 | ||
| 5345 | 13년 전 | 818 | ||
| 5344 |
후라보노보노
|
13년 전 | 1960 | |
| 5343 | 13년 전 | 1165 | ||
| 5342 | 13년 전 | 1129 | ||
| 5341 | 13년 전 | 2076 | ||
| 5340 |
|
13년 전 | 1120 | |
| 5339 |
AMDbest
|
13년 전 | 744 | |
| 5338 | 13년 전 | 739 | ||
| 5337 |
프로프리랜서
|
13년 전 | 1487 | |
| 5336 |
프로프리랜서
|
13년 전 | 932 | |
| 5335 | 13년 전 | 729 | ||
| 5334 |
|
13년 전 | 981 | |
| 5333 | 13년 전 | 2849 | ||
| 5332 | 13년 전 | 1533 | ||
| 5331 | 13년 전 | 1333 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기