|
 |
array_reduce (PHP 4 >= 4.0.5, PHP 5) array_reduce --
Итеративно уменьшить массив к единственному значению, используя
функцию обратного вызова
Описаниеmixed array_reduce ( array input, callback function [, int initial] )
array_reduce() итеративно применяет функцию
function к элементам массива
input и, таким образом, сводит массив
к единственному значению. Если указан дополнительный параметр
initial, он будет использован в начале процесса,
или в качестве окончательного результата, если массив пуст.
Пример 1. Пример использованияarray_reduce()
<?php
function rsum($v, $w)
{
$v += $w;
return $v;
}
function rmul($v, $w)
{
$v *= $w;
return $v;
}
$a = array(1, 2, 3, 4, 5);
$x = array();
$b = array_reduce($a, "rsum");
$c = array_reduce($a, "rmul", 10);
$d = array_reduce($x, "rsum", 1);
?>
|
|
В результате переменная $b содержит
15, $c содержит
1200 (= 1*2*3*4*5*10), и
$d содержит 1.
См. также array_filter(),
array_map(),
array_unique(), и
array_count_values().
array_reduce
marcel dot oehler at kubusmedia dot com
08-Feb-2006 07:26
I've just experienced some really strange behaviour of array_reduce in PHP 5.0.4:
$result = array( 0, 17, 0, 0, 33, 0, 0, 0, 0, 50);
$total = array_reduce( $result, "sumCalc", 0);
function sumCalc( $a, $b){
return $a + $b;
}
and $total equals to 83!
I know, this could be done easier, but it should work nevertheless. Has anybody experienced something similar? I will avoid using array_reduce in the future...
Seanj.jcink.com
04-Jan-2006 06:23
The code posted below by bishop to count the characters of an array is simply... erm... well useless to me...
$array=Array("abc","de","f");
strlen(implode("",$array)); //6
works; and is much smaller. Probably much faster too.
ildar [DASH] sh [AT] mail [DOT] ru
29-Nov-2005 10:02
in rare cases when an array is a set of numeric values and result is one of sum or product of numbers the next examples may be useful
<?php
echo eval('return ' . implode('+', $nums) . ';');
echo eval('return ' . implode('*', $nums) . ';');
?>
the reason of these codes is omitting of single used per script of callbacks
david dot tulloh at infaze dot com dot au
23-Jun-2005 01:18
The code supplied by cuntbubble is unfortunately incorrect.
Running it I got the output:
0<TR><TD><a href="page1.html">page1</a></td>
<TR><TD><a href="page2.html">page2</a></td>
<TR><TD><a href="page3.html">page3</a></td>
</table>
So php, not finding an integer, used int(0) to start the process. I've tested to confirm this.
bishop
30-Apr-2004 08:19
Count the total number of characters in an array of strings:
<?php
$lines = array ('abc', 'd', 'ef');
$totalChars = array_reduce($lines, create_function('$v,$w','return $v + strlen($w);'), 0);
?>
tonicpeddler at aol dot com
01-Nov-2002 07:17
in response to php dot net at cuntbubble dot com
actually when you pass a value to a function that accepts a specific data type, php automatically evaluates that value as the data type expected
php dot net at cuntbubble dot com
17-Jan-2002 08:08
There is an error/misleading item in the documentation
[, int initial]
int is not constrained to an integer, it can be any data type (although I've not tested ALL data types)
and $v is the cumulative part, the current value of the reduction.
and I'll take the liberty to add another example, as used in my code
<?php
function reduceToTable($html, $p) {
$html .= "<TR><TD><a href=\"$p.html\">$p</a></td>\n";
return $html;
}
$list = Array("page1", "page2", "page3");
$tab = array_reduce($list, "reduceToTable", "<table>\n");
echo $tab . "</table>\n";
?>
hmm, getting stuff on one line sure is tricky, it get's wordwrapped on the char count in html so > counts as 4 chars not one so by the time you've counted "< you've used up 8 chars
If it get's through moderation could someone please make it look ok :)
| |