arrayutils
Search
K

Suffix - From

Suffixing "From" to the any methods can called statically.

Suffixing "From" to the any methods can called statically. It can be used by giving an iterable as the first argument.

Example
is same to
$arr = ArrayUtils::reverseFrom([1,2,3,4,5]);
var_export((array) $arr);
//array (0 => 5, 1 => 4, 2 => 3, 3 => 2, 4 => 1
$arr = ArrayUtils::from([1,2,3,4,5])->reverse();
var_export((array) $arr);
//array (0 => 5, 1 => 4, 2 => 3, 3 => 2, 4 => 1