<?php function array_map_custom($array, $callable) { $result = []; foreach($array as $item) { $result[] = $callable($item); } return $result; } $arr = [1, 2, 3, 4]; $newArr = array_map_custom( $arr, function($x){ return $x*$x; }); print_r($newArr);
You have javascript disabled. You will not be able to edit any code.