PHP list() function

PHP extract() function
PHP natcasesort() function

In this article, you will learn how to assign values to multiple variables at a time. The list() function is used to pick and assign values from the array to a list of variables in a single operation.

What is the syntax of the list() function in PHP?

list(var1, var2, ...)
ParametersDetails
var1The first variable in the list to assign value to – Required
var2,… More variables in the list to assign value to – Optional
PHP list function

Examples of list() function

Example 1. Assign values to the variables from an array.

<?php
$arr= array("a","b","c");
list($x, $y, $z) = $arr;
echo "Values of variables are $x, $y and $z";
?>

Example 2. Another example of the list function.

<?php
$arr= array("a","b","c");
list($x,,$z) = $arr;
echo "Values of variables are $x and $z";
?>
PHP extract() function
PHP natcasesort() function

Stay up-to-date about PHP!

We don’t spam!

en English
X
Scroll to Top