What exactly is the the difference between array_map , array_walk and array_filter ?
What exactly is the the difference between array_map , array_walk and array_filter ?
Here is an explanation of the differences between array_map(), array_walk(), and array_filter() in PHP:
$numbers = [1, 2, 3, 4, 5];
$squared = array_map(function($x) {
return $x * $x;
}, $numbers);
// $squared is now [1, 4, 9, 16, 25]
$fruits = ['apple', 'banana', 'orange'];
array_walk($fru...
middle
Gợi ý câu hỏi phỏng vấn
Chưa có bình luận nào