How to define array in PHP? How many ways are there to define an array?

韦小宝
Release: 2023-03-17 12:48:02
Original
18121 people have browsed it

PHP array is actually an ordered map. PHP ArrayMapping is a type that associates values ​​to keys. This type is optimized in many ways, so it can be treated as a real array, or list (vector), hash table (which is an implementation of map), dictionary, set, stack, queue and many more possibilities. Since the value of a PHP array element can also be another array, tree structures and multidimensional arrays are also allowed.

How to define array in PHP? How many ways are there to define an array?

Generally speaking, the definition methods are as follows:

Method 1:

$a=array('a','b','c');
Copy after login

The running results are as follows shown.
Array
(
[0]=>a
[1]=>b
[2]=>c
[3]=>simon
)

Method 2:

$a=array(key1=>value1,key2=>value2,key3=>value3);
Copy after login

Method 3:

$a[key1]=value1;
$a[key2]=value2;
Copy after login

Method 4: Through square brackets [ ]Define array

You can write like this after php version 5.4, with the new array abbreviation syntax.

php version 5.3 and previous versions do not accept writing like this...

$data = [
'start_time' => '123',
'end_time' =>'456'
];
Copy after login

Syntax

Define array array()

You can use the array() language structure to create a new array. It accepts any number of comma-separated key => value pairs.

array( 
 key => value,
  ...
  )
// 键(key)可是是一个整数 integer 或字符串 string
// 值(value)可以是任意类型的值
Copy after login

The comma after the last array element can be omitted. Usually used in single-line array definitions, such as array(1, 2) instead of array(1, 2, ). It is common to leave the last comma in multi-line array definitions to make it easier to add a new cell.

Since 5.4, you can use short array definition syntax, using [] instead of array().

PHP arrays are relatively simple and convenient to use, and the calling is equally simple and convenient. They are suitable for large, medium and small data storage and calling

Related recommendations:

Several ways to delete elements with specified values ​​in php arrays

php array replacement function array_replace()

php array to string to obtain array representation of the path method analysis

The above is the detailed content of How to define array in PHP? How many ways are there to define an array?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!