Skip to content
Advertisement

How to call array_map() without using a closure

I have something like this:

public static function lengtOfElements($array){
    return array_map(function($item){return strlen($item);},$array);
}

What I want to do is to use strlen($string) directly in array_map, but when I try it it won’t work.. Why is the reason?

Something like this:

public static function lengtOfElements($array){
    return array_map(strlen($string),$array);
}

Advertisement

Answer

Your syntax is a little off:

return array_map('strlen',$array);
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement