Phone: +998 91 958 66 36
E-mail: behzodjontuit1998@gmail.com
Telegram: @behzodjon
[LinkedIn]https://www.linkedin.com/in/behzod-xudoyberdi/)
—
Learner who is curious about gaining new knowledge and excited about coding. Currently working at Upwork freelancing platform.
Pass a callback to PHP’s array_map() function to calculate the length of every string in an array:
function my_callback($item) {
return strlen($item);
}
$strings = ["apple", "orange", "banana", "coconut"];
$lengths = array_map("my_callback", $strings);
print_r($lengths);