유용한 함수 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"));
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7330 | 11년 전 | 1672 | ||
| 7329 | 11년 전 | 930 | ||
| 7328 | 11년 전 | 2219 | ||
| 7327 | 11년 전 | 1717 | ||
| 7326 | 11년 전 | 3797 | ||
| 7325 | 11년 전 | 2261 | ||
| 7324 | 11년 전 | 4506 | ||
| 7323 |
호식이와미돌
|
11년 전 | 1276 | |
| 7322 |
호식이와미돌
|
11년 전 | 1137 | |
| 7321 | 11년 전 | 1780 | ||
| 7320 | 11년 전 | 1754 | ||
| 7319 | 11년 전 | 1314 | ||
| 7318 |
|
11년 전 | 965 | |
| 7317 |
멋진남자임
|
11년 전 | 1613 | |
| 7316 |
잘살아보자
|
11년 전 | 982 | |
| 7315 | 11년 전 | 1087 | ||
| 7314 | 11년 전 | 1307 | ||
| 7313 |
잘살아보자
|
11년 전 | 1117 | |
| 7312 | 11년 전 | 875 | ||
| 7311 |
사랑한데이
|
11년 전 | 2057 | |
| 7310 |
잘살아보자
|
11년 전 | 1871 | |
| 7309 |
잘살아보자
|
11년 전 | 3039 | |
| 7308 |
잘살아보자
|
11년 전 | 1015 | |
| 7307 |
잘살아보자
|
11년 전 | 779 | |
| 7306 | 11년 전 | 863 | ||
| 7305 |
잘살아보자
|
11년 전 | 2754 | |
| 7304 | 11년 전 | 1014 | ||
| 7303 | 11년 전 | 1212 | ||
| 7302 | 11년 전 | 718 | ||
| 7301 | 11년 전 | 1501 | ||
| 7300 |
mijaya
|
11년 전 | 1491 | |
| 7299 | 11년 전 | 903 | ||
| 7298 | 11년 전 | 1086 | ||
| 7297 | 11년 전 | 763 | ||
| 7296 | 11년 전 | 722 | ||
| 7295 | 11년 전 | 1551 | ||
| 7294 | 11년 전 | 896 | ||
| 7293 | 11년 전 | 800 | ||
| 7292 | 11년 전 | 903 | ||
| 7291 |
잘살아보자
|
11년 전 | 1089 | |
| 7290 |
잘살아보자
|
11년 전 | 737 | |
| 7289 | 11년 전 | 782 | ||
| 7288 |
잘살아보자
|
11년 전 | 1302 | |
| 7287 | 11년 전 | 823 | ||
| 7286 |
잘살아보자
|
11년 전 | 1318 | |
| 7285 | 11년 전 | 813 | ||
| 7284 | 11년 전 | 979 | ||
| 7283 | 11년 전 | 1007 | ||
| 7282 | 11년 전 | 758 | ||
| 7281 | 11년 전 | 789 | ||
| 7280 | 11년 전 | 1027 | ||
| 7279 | 11년 전 | 1957 | ||
| 7278 | 11년 전 | 792 | ||
| 7277 | 11년 전 | 804 | ||
| 7276 | 11년 전 | 745 | ||
| 7275 | 11년 전 | 1159 | ||
| 7274 | 11년 전 | 807 | ||
| 7273 | 11년 전 | 714 | ||
| 7272 | 11년 전 | 1043 | ||
| 7271 | 11년 전 | 1371 | ||
| 7270 | 11년 전 | 997 | ||
| 7269 | 11년 전 | 925 | ||
| 7268 | 11년 전 | 969 | ||
| 7267 | 11년 전 | 1801 | ||
| 7266 | 11년 전 | 872 | ||
| 7265 | 11년 전 | 929 | ||
| 7264 |
잘살아보자
|
11년 전 | 2707 | |
| 7263 |
잘살아보자
|
11년 전 | 2253 | |
| 7262 |
잘살아보자
|
11년 전 | 1139 | |
| 7261 |
잘살아보자
|
11년 전 | 1629 | |
| 7260 |
잘살아보자
|
11년 전 | 1243 | |
| 7259 | 11년 전 | 1155 | ||
| 7258 |
잘살아보자
|
11년 전 | 1288 | |
| 7257 |
잘살아보자
|
11년 전 | 1890 | |
| 7256 | 11년 전 | 930 | ||
| 7255 |
그누5입문
|
11년 전 | 1938 | |
| 7254 | 11년 전 | 2161 | ||
| 7253 |
|
11년 전 | 859 | |
| 7252 | 11년 전 | 1001 | ||
| 7251 | 11년 전 | 713 | ||
| 7250 | 11년 전 | 1677 | ||
| 7249 | 11년 전 | 1545 | ||
| 7248 |
sogo87
|
11년 전 | 1032 | |
| 7247 | 11년 전 | 915 | ||
| 7246 | 11년 전 | 693 | ||
| 7245 |
잘살아보자
|
11년 전 | 1068 | |
| 7244 | 11년 전 | 1522 | ||
| 7243 |
presee
|
11년 전 | 589 | |
| 7242 |
sogo87
|
11년 전 | 779 | |
| 7241 | 11년 전 | 861 | ||
| 7240 |
브라이언2
|
11년 전 | 883 | |
| 7239 |
|
11년 전 | 1086 | |
| 7238 | 11년 전 | 2616 | ||
| 7237 |
잘살아보자
|
11년 전 | 2275 | |
| 7236 |
dethos79
|
11년 전 | 1837 | |
| 7235 |
멋진남자임
|
11년 전 | 1399 | |
| 7234 | 11년 전 | 1339 | ||
| 7233 | 11년 전 | 2312 | ||
| 7232 | 11년 전 | 1580 | ||
| 7231 | 11년 전 | 2780 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기