PHP list
PHP list function is an important function used for assigning values to a list of variables while performing single operation at one go. This function is not present in all the PHP versions and is introduced exclusively in PHP versions before 7.1 which works only for numerical arrays while assigning values to the list of variables. The values assigned to the variables is the return type once executed with the help of PHP list function. PHP list function is not actually a function like array rather it is considered a language construct for assigning values.
ADVERTISEMENT Popular Course in this category PHP DEVELOPER - Specialization | 8 Course Series | 3 Mock TestsStart Your Free Software Development Course
Web development, programming languages, Software testing & others
Syntax
list(var_1, var_2, ...)
The syntax flow is in a way where there is a list as function comprising of arguments passed from the function:
- list: The function list() is declared.
- var_1: The variable passed as an argument is required and is quite of mandatory in the sense this acts as the first variable to assign a value to the variable declared.
- var_2: The second variable is optional and then this variable is used to assign values to the list followed by sequence.
This syntax when applied has a return type as assigned array which means whatever values are assigned to the array is the return type for that instance.
How list Function works in PHP?
list() function is an inbuild function in PHP which is exclusively used for assigning values to more than one variable by performing a single operation at the time of execution.
Let’s see the actual flow for working of list function in PHP which is described as follows :
- Initially list being an inbuild function doesn’t required to be written and doesn’t require any external function call it works just seamlessly without much intrusion.
- The array gets assigned with the required values from the multiple values considered at the time of execution.
- There is a misconception regarding the array declared as a variable for assigning values but it’s just a myth in actual it is just a language construct.
- Everything gets executed in a single operation using list() function while assigning variable.
- This function works seamlessly on the numerical arrays only, which represents the fact that the user will get interacted with the arrays using first variable which is var_1.
- The second argument getting passed to the function is an optional argument which gets retrieved and worked once the first argument satisfies the condition.
- One point needs to be kept in mind which is like the number of variables should not exceed length of the numerical array and in case it exceeds the array defined variable then it will give error with parameters types and there will be no return type at the time of execution.
- There should be no exception introduced while executing this list function otherwise the requirement and the return type will not get suffice.
- If a function is not having any return statement, then implicitly it will return NULL as its return type at the time of execution.
- The parameters to be passed as part of the function should be arranged in a way where the list of variables will get separated by spaces within the code.
- The first variable to be passed from the function is a mandatory variable for the return type.
- Another important point to look upon is the version compatibility which means that the PHP version should have version support less than 7.
- Also, coming to the version compatibility for PHP then PHP version 5 in the list should assign values starting with right most parameter.
- Whereas there is a difference with PHP version 7 where the assignment to the values of variable which will appear as left-most parameter.
- In case normal variables are used then there is no need to worry about assigning values to the variables and then using these arrays with indices is used for arranging the values in an order.
- But in case of order must be maintained like from left to right or from right to left then it is very much need to keep in mind about the PHP versioning.
Examples of PHP list
Given below are the examples of PHP list:
Example #1
This program demonstrates the PHP list where the array is assigned with the variable having values as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php $an_arr = array("Banana","Mango","Apple"); list($a_1, $b_2, $c_3) = $an_arr; echo "I have many fruits, one $a_1, one $b_2 and one $c_3."; ?> </body> </html>
Output:
Example #2
This program demonstrates the PHP list where array is assigned with the first and third value within the variable as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php $arr_b = array("Pencil","Copy","Pen"); list($k_0, , $z_1) = $arr_b; echo "Used_variable_for_modification $k_0 and $z_1 variables."; ?> </body> </html>
Output:
Example #3
This program demonstrates the declaration of array in a way where initially all the variables are listed, followed by retrieving some values and then listing some of them among all from which the third one gets skipped in case of the list with all the string it will return the NULL value as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php $in_p = array('choco', 'caramel', 'pancake'); list($choco, $cake, $caramel) = $in_p; echo "$choco cake $color and $caramel appears relishing \n"; list( , , $caramel) = $in_p; echo "caramel cake tastes wow $caramel!\n"; list($choco, , $cake) = $in_p; echo "$choco has $cake.\n"; list($gi_t) = "lost_in \n"; list($choco, , $cake) = $in_p; echo "$choco has $cake.\n"; var_dump($gi_t); ?> </body> </html>
Output:
Example #4
This program demonstrates the nested array by using list function as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php list($a_1, list($b_2, $c_0)) = array(1, array(4, 6)); var_dump($a_1, $b_2, $c_0); echo "listing of nested array"; ?> </body> </html>
Output:
Conclusion
PHP list is an inbuild function which gives user the flexibility and versatility to adapt this function as part of the implementation as per requirement. Use of PHP list make the values arranged in some order which gives user visibility to implement a user-friendly array return values with variables.
The above is the detailed content of PHP list. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.
