Ds \ Sequence::reduce()函數是PHP中的一個內置函數,用於使用回調函數將序列減少為單個值。
用法:
mixed abstract public Ds\Sequence::reduce ( callable $callback [, mixed $initial ] )
參數:該函數接受上述和以下描述的兩個參數:
- $callback:該參數具有包含對元素的操作和存儲進位的函數。該回調函數包含兩個參數,進位和值,其中進位是該函數返回的值,而值是當前迭代中元素的值。
- $initial:此參數保存進位的初始值,可以為NULL。
返回值:該函數返回回調函數的最終值。
以下示例程序旨在說明PHP中的Ds \ Sequence::reduce()函數:
程序1:
<?php
// Declare new sequence
$seq = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("Sequence Elements\n");
print_r($seq);
// Callback function with reduce function
echo("\nElement after performing operation\n");
var_dump($seq->reduce(function($carry, $element) {
return $carry + $element + 2;
}));
?>
輸出:
Sequence Elements Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 ) Element after performing operation int(25)
程序2:
<?php
// Declare new sequence
$seq = new \Ds\Vector([10, 20, 30, 40, 50]);
echo("Original sequence elements\n");
print_r($seq);
$func_gfg = function($carry, $element) {
return $carry * $element;
};
echo("\nSequence after reducing to single element\n");
// Use reduce() function
var_dump($seq->reduce($func_gfg, 10));
?>
輸出:
Original sequence elements Ds\Vector Object ( [0] => 10 [1] => 20 [2] => 30 [3] => 40 [4] => 50 ) Sequence after reducing to single element int(120000000)
參考: https://www.php.net/manual/en/ds-sequence.reduce.php
相關用法
- PHP Ds\Set reduce()用法及代碼示例
- PHP Ds\Map reduce()用法及代碼示例
- PHP Ds\Vector reduce()用法及代碼示例
- PHP Ds\Deque reduce()用法及代碼示例
- Javascript Array reduce()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP exp()用法及代碼示例
- PHP min( )用法及代碼示例
- d3.js d3.max()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Sequence reduce() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。