array() function is a commonly used function in PHP to define arrays. It receives a parameter list, where each element corresponds to a value in the array. Key values in the array can be omitted (the default is to start from 0 and increase), the order of elements is important, and arrays can be nested.
Functions commonly used to define arrays in PHP
array() function is the most commonly used function to define arrays in PHP function.
How to use the array() function:
array() function receives a parameter list, each parameter corresponds to a value in the array. Parameters can be of any data type, including strings, numbers, arrays, and even objects.
Syntax:
<code class="php">array($value1, $value2, $value3, ..., $valueN);</code>
Example:
<code class="php">$fruits = array("apple", "banana", "orange", "pear");</code>
This code creates an array named $fruits that contains 4 elements: "apple", "banana", "orange" and "pear".
Other points:
The above is the detailed content of Which function is commonly used to define arrays in php?. For more information, please follow other related articles on the PHP Chinese website!