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