是否可以在php中没有循环的情况下更改数组的所有值?
我在php中有以下数组:
$a = $array(0, 4, 5, 7);
我想在不编写循环的情况下递增所有值(for,foreach...)
// increment all values
// $a is now array(1, 5, 6, 8)
在 php 中可能吗?
通过扩展,是否可以在每个元素上调用一个函数,并用函数的返回值替换该元素?
例如:
$a = doubleValues($a); // array(0, 8, 10, 14)