ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

141 results

StartCodingClass
PHP Array Functions in_array & array_search | PHP Tutorial

Learn how to use in_array() and array_search() functions in PHP to search values and keys inside arrays effectively.

24:51
PHP Array Functions in_array & array_search | PHP Tutorial

17 views

5 months ago

PHP Explained
Using array_column() to extract values

Learn how to use array_column() in PHP to extract values from multi-dimensional arrays. It's the cleanest way to pull specific ...

0:42
Using array_column() to extract values

67 views

6 months ago

StartCodingClass
#40 PHP Array Sorting Functions | PHP Tutorial

Learn everything about PHP array sorting functions in this easy-to-follow tutorial! Whether you're a beginner or looking to ...

22:11
#40 PHP Array Sorting Functions | PHP Tutorial

50 views

8 months ago

PHP Explained
How list() works with arrays

Learn how list() simplifies array assignments in PHP! Perfect for unpacking values and writing cleaner, more readable code.

0:56
How list() works with arrays

111 views

1 month ago

PHP Explained
PHP array destructuring

PHP array destructuring lets you unpack values from an array directly into variables — cleanly and quickly! No need for multiple ...

0:42
PHP array destructuring

75 views

6 months ago

PHP Explained
Removing duplicates with array_unique()

Learn how to remove duplicate values from arrays in PHP using the built-in array_unique() function. Clean your data with one line ...

0:37
Removing duplicates with array_unique()

79 views

6 months ago

Laravel News
What is your favorite obscure PHP function?

At PHPVerse, we asked people to share their favorite obscure PHP function or feature.

4:03
What is your favorite obscure PHP function?

1,099 views

6 months ago

PHP Explained
Reindexing arrays with array_values()

Got gaps in your PHP array keys after using unset()? Here's a 60-second fix! Use array_values() to reindex your arrays and ...

0:43
Reindexing arrays with array_values()

66 views

6 months ago

PHP Explained
Using array_map() with callbacks

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 ...

0:20
Using array_map() with callbacks

401 views

6 months ago

PHP Explained
Sorting arrays by key and value

Learn how to sort arrays in PHP using ksort() and asort(). Sort by keys or values while preserving the structure of your array.

0:39
Sorting arrays by key and value

110 views

6 months ago

PHP Explained
How to create functions in PHP

Function is one of the most creative building blocks of PHP. When a group of statements need to be executed repeatedly to ...

0:51
How to create functions in PHP

61 views

9 months ago

PHP Explained
How to use recursion in PHP

Recursion is a process that repeats itself until a condition satisfied. In PHP, recursion can be implemented using functions.

0:28
How to use recursion in PHP

277 views

9 months ago

PHP Explained
Default parameters in PHP functions

Functions can take variables within parentheses separated by commas. These variables are called parameters. Parameters are ...

1:10
Default parameters in PHP functions

56 views

9 months ago

PHP Explained
Global vs. local variables in PHP functions

Variables declare inside the function are called local variables. Local variables can be accessed into inside of the function.

0:52
Global vs. local variables in PHP functions

368 views

9 months ago

Aaron Francis
I built a way to write PHP alongside your frontend

Introducing Fusion: Seamlessly combine React and Vue with Laravel. I built a way to write PHP inside Vue & React ...

19:57
I built a way to write PHP alongside your frontend

39,575 views

11 months ago

PHP Explained
PHP anonymous functions explained

A function in PHP is created by a name preceded by keyword function. Anonymous function is a special function that does not ...

0:36
PHP anonymous functions explained

83 views

9 months ago

ItSlang
PHP 8.5: array_first() & array_last() — Cleaner and Safer Array Access

PHP 8.5 introduces two small but powerful functions: array_first() and array_last(). They make array access cleaner, safer, and ...

2:46
PHP 8.5: array_first() & array_last() — Cleaner and Safer Array Access

631 views

2 weeks ago

PHP Explained
Explode vs implode in PHP

Function explode() converts a string into an array using a delimiter. Whereas function implode() converts an array into a string ...

1:15
Explode vs implode in PHP

117 views

6 months ago

PHP Explained
array_filter() to remove empty values

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.

0:23
array_filter() to remove empty values

416 views

6 months ago

PHP Explained
PHP closures and scopes

A quick breakdown of PHP closures and how scope works inside them. Learn how the use keyword imports external variables ...

0:33
PHP closures and scopes

26 views

1 month ago