Ds\Vector::apply() 函数可以通过对每个值应用回调函数来更新所有值。
用法
public void Ds\Vector::apply( callable $callback )
Ds\Vector::apply() 函数可以通过对向量中的每个值应用回调函数来更新所有值。
Ds\Vector::apply() 函数不返回任何值。
例子1
<?php
$callback = function($value) {
return $value / 10;
};
$vector = new \Ds\Vector([5, 15, 25, 35, 45]);
$vector->apply($callback);
print_r($vector);
?>
例子2
<?php
$callback = function($value) {
return $value * 5;
};
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
$vector->apply($callback);
print_r($vector);
?>
相关用法
- PHP Ds Vector allocate()用法及代码示例
- PHP Ds Vector get()用法及代码示例
- PHP Ds Vector count()用法及代码示例
- PHP Ds Vector sum()用法及代码示例
- PHP Ds Vector sorted()用法及代码示例
- PHP Ds Vector set()用法及代码示例
- PHP Ds Vector unshift()用法及代码示例
- PHP Ds Vector rotate()用法及代码示例
- PHP Ds Vector last()用法及代码示例
- PHP Ds Vector push()用法及代码示例
- PHP Ds Vector first()用法及代码示例
- PHP Ds Vector jsonSerialize()用法及代码示例
- PHP Ds Vector insert()用法及代码示例
- PHP Ds Vector construct()用法及代码示例
- PHP Ds Vector contains()用法及代码示例
- PHP Ds Vector toArray()用法及代码示例
- PHP Ds Vector merge()用法及代码示例
- PHP Ds Vector join()用法及代码示例
- PHP Ds Vector copy()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Vector apply() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。