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
127 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
At PHPVerse, we asked people to share their favorite obscure PHP function or feature.
1,099 views
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
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
Got gaps in your PHP array keys after using unset()? Here's a 60-second fix! Use array_values() to reindex your arrays and ...
65 views
We create a variable, assign a value to it. In the next line, transform the variable into a function by adding parentheses. Now, PHP ...
9 months ago
Function is one of the most creative building blocks of PHP. When a group of statements need to be executed repeatedly to ...
61 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
Recursion is a process that repeats itself until a condition satisfied. In PHP, recursion can be implemented using functions.
275 views
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
We can use function strip_tags() to strip or remove HTML and PHP tags from a string. Here are the top features of this function at a ...
68 views
PHP 8.5 introduces two small but powerful functions: array_first() and array_last(). They make array access cleaner, safer, and ...
0 views
2 weeks ago
When we consider a programming language to use it for long run, we have to consider many features. One of the features is how ...
19 views
10 months ago