Logo

Programming-Idioms

History of Idiom 8 > diff from v57 to v58

Edit summary for version 58 by ancarda:
[PHP] Format code snippet to PSR-12

Version 57

2019-09-26, 22:15:32

Version 58

2019-09-26, 22:32:17

Idiom #8 Initialize a new map (associative array)

Declare a new map object x, and provide some (key, value) pairs as initial content.

Idiom #8 Initialize a new map (associative array)

Declare a new map object x, and provide some (key, value) pairs as initial content.

Extra Keywords
table dictionary hash
Extra Keywords
table dictionary hash
Code
$x = array( "one"=>1, "two"=>2 );
Code
$x = ['one' => 1, 'two' => 2];
Doc URL
http://php.net/manual/en/language.types.array.php
Doc URL
http://php.net/manual/en/language.types.array.php