Arrays

suggest change

Introduction

An array is a data structure that stores an arbitrary number of values in a single value. An array in PHP is actually an ordered map, where map is a type that associates values to keys.

Syntax

Parameters

Parameter | Detail | —— | —— | Key | The key is the unique identifier and index of an array. It may be a string or an integer. Therefore, valid keys would be 'foo', '5', 10, 'a2b', ... Value | For each key there is a corresponding value (null otherwise and a notice is emitted upon access). The value has no restrictions on the input type.

Remarks

See also

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Arrays:
* Arrays

Table Of Contents
2 Arrays
4 Types
10 Cookies
14 JSON
15 SOAP
17 cURL
19 XML
21 Traits
35 UTF-8
36 URLs
38 PHPDoc
41 Loops
44 Closur
72 YAML
77 Cache
78 Streams
81 PDO
82 SQLite3
83 Sockets
87 MongoDB
93 IMAP
94 Redis
95 Imagick
102 APCu
108 PSR