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
141 results
Learn how to use in_array() and array_search() functions in PHP to search values and keys inside arrays effectively.
17 views
5 months ago
Learn how to use array_column() in PHP to extract values from multi-dimensional arrays. It's the cleanest way to pull specific ...
67 views
6 months ago
Learn everything about PHP array sorting functions in this easy-to-follow tutorial! Whether you're a beginner or looking to ...
50 views
8 months ago
Learn how list() simplifies array assignments in PHP! Perfect for unpacking values and writing cleaner, more readable code.
111 views
1 month ago
PHP array destructuring lets you unpack values from an array directly into variables — cleanly and quickly! No need for multiple ...
75 views
Learn how to remove duplicate values from arrays in PHP using the built-in array_unique() function. Clean your data with one line ...
79 views
At PHPVerse, we asked people to share their favorite obscure PHP function or feature.
1,099 views
Got gaps in your PHP array keys after using unset()? Here's a 60-second fix! Use array_values() to reindex your arrays and ...
66 views
We have created an array of numbers. $no = [ 1, 2, 3, 4, 5 ]; Again. we have created a function that accept a number and returns ...
401 views
Learn how to sort arrays in PHP using ksort() and asort(). Sort by keys or values while preserving the structure of your array.
110 views
Function is one of the most creative building blocks of PHP. When a group of statements need to be executed repeatedly to ...
61 views
9 months ago
Recursion is a process that repeats itself until a condition satisfied. In PHP, recursion can be implemented using functions.
277 views
Functions can take variables within parentheses separated by commas. These variables are called parameters. Parameters are ...
56 views
Variables declare inside the function are called local variables. Local variables can be accessed into inside of the function.
368 views
Introducing Fusion: Seamlessly combine React and Vue with Laravel. I built a way to write PHP inside Vue & React ...
39,575 views
11 months ago
A function in PHP is created by a name preceded by keyword function. Anonymous function is a special function that does not ...
83 views
PHP 8.5 introduces two small but powerful functions: array_first() and array_last(). They make array access cleaner, safer, and ...
631 views
2 weeks ago
Function explode() converts a string into an array using a delimiter. Whereas function implode() converts an array into a string ...
117 views
Here is an array. $arr1 = [ 1, 3, 2, 3, 4 ]; We are using function array_filter() to filter the values of this array using a callback function.
416 views
A quick breakdown of PHP closures and how scope works inside them. Learn how the use keyword imports external variables ...
26 views