📜  PHP | Ds\Vector reduce()函数

📅  最后修改于: 2022-05-13 01:56:28.746000             🧑  作者: Mango

PHP | Ds\Vector reduce()函数

Ds\Vector::reduce()函数是PHP中的一个内置函数,它通过在回调函数中应用操作将向量缩减为单个值。

句法:

mixed  public Ds\Vector::reduce( $callback, $initial )

参数:该函数接受上面提到的两个参数,如下所述:

  • $callback:此参数保存包含对元素的操作和存储进位的函数。此回调函数包含两个参数,进位和值,其中进位是函数返回的值,值是当前迭代中元素的值。
  • $initial:该参数保存进位的初始值,可以为NULL。

返回值:该函数返回回调函数返回的最终值。

下面的程序说明了PHP中的Ds\Vector::reduce()函数:

方案一:

reduce(function($carry, $element) {
    return $carry + $element + 2;
}));
  
?>

输出:

Vector Elements
Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)

Element after performing operation
int(25)

方案二:

reduce($func_gfg, 10));
  
?>

输出:

Original vector elements
Ds\Vector Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
)

Vector after reducing to single element
int(120000000)

参考: http: PHP。 PHP