<?php $x = ["a", "b", "c", "d", "e"]; var_export( array_reduce( $x, function($result, $v) { $result[] = $v; return $result; }, $x ) );
You have javascript disabled. You will not be able to edit any code.