For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

$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

Last updated