Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
1,500 results
In this video, we'll explore the powerful `array_map` function in PHP and how it can be applied to multidimensional arrays.
23 views
9 months ago
When should you use array_map() in PHP? Use array_map() when you need to apply a function to each element. It helps to ...
436 views
1 year ago
When should you use array_map over array_filter? array_map is used when you need to apply a transformation to every ...
52 views
When to use array_map vs array_filter in PHP? Use array_map when you need to transform every element of the array.
94 views
When should I use array_map() over array_walk() in PHP? array_map() creates and returns a new array with modified values.
57 views
In this video, we dive into the powerful capabilities of PHP's `array_map` function, exploring how to leverage it with multiple ...
20 views
When should I use array_map over array_walk in PHP? array_map() returns a new array after applying the callback function to ...
448 views
When should you use array_walk? Use array_walk when you need to modify the original array. array_walk works by directly ...
95 views
When should you prefer array_map in PHP? Use `array_map` when applying a function to each array element. It's ideal for ...
149 views
What's the difference between array_map and array_walk in PHP? array_map creates a new array by applying a function to ...
97 views
Want a free course certificate? Follow the Academy: https://academy.especializati.com.br/curso/fundamentos-programacao-php-7 ...
4,983 views
7 years ago
About CampusX: CampusX is an online mentorship program for engineering students. We offer a 6-month long mentorship to ...
109 views
5 years ago
As a start we will learn how to use the most common functions in the functional programming world. we will learn the purpose and ...
1,129 views
8 years ago
Who created the PHP array_map for kids? In 2002, a talented programmer named John Smith invented a fun way for kids to learn ...
16 views
When should you use array_walk vs array_map in PHP? array_walk() is best when you need to modify the original array ...
241 views
How to efficiently merge associative arrays in PHP? Use the array_merge() function to merge associative arrays in PHP.
196 views
How can count() handle nested arrays in PHP? 🛡️ The count() function returns the number of elements in an array or properties ...
38 views
How to handle large arrays in PHP without memory issues? Large arrays can consume a lot of memory. BUT you can ...
How to use array_walk_recursive in PHP? ⛹️ Array_walk_recursive is useful for multi-dimensional arrays. ⛹️ It allows you to ...
19 views
How to use array_replace_recursive in PHP? Array_replace_recursive merges arrays deeply. It preserves nested structures ...
39 views
Why is natsort() better than sort() for arrays? natsort() sorts arrays in a natural order. It handles numeric strings within text ...
77 views
How to Combine Arrays Dynamically in PHP? PHPs array_combine function merges two arrays, one as keys and another as ...
32 views
In this tutorial, we'll learn how arrays work in PHP. Arrays are one of the most important data structures in PHP, allowing you to ...
6,753 views
10 years ago
Which are the fastest PHP functions for arrays? When you need speed, choose array_map and array_filter. These functions ...
48 views
Which is faster for array lookup in PHP? 🎙️ in_array checks if a value exists in the array, returning true or false.
435 views