Function of PHP list function

Source: Internet
Author: User

Function of PHP list function

Array () is similar, list () is actually a language structure, not a function.

The list () function assigns a set of variables to an element in an array

List (VAR,VAR1) has a parameter that is required

Let's take a look at an example
$array = Array (' AA ', ' BA ', ' Ca ', ' da ', ' ea ', ' FA ');
List ($a, $b, $c) = $array;

echo $a, $b, $c; Output A,b,c What would be the result?

The result: aabacaaa

$a = list ($a, $b, $c) = $array;

Print_r ($a);

/* Output result array
(
[0] => AA
[1] => BA
[2] => CA
[3] => da
[4] => ea
[5] => FA
)
*/

Let's look at an example.

$b =list ($a, $c) = $array;


echo $a, ' and ', $c;

The result is AA and CA

/*
The conclusion is that the list must be used in conjunction with the array, but the array list does not have to be exactly equal, and the function of the list is to assign the data to the variable.
*/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.