Array Syntax
// Indexed
\$colors = ["red", "green", "blue"];
echo \$colors[0]; // red
// Associative
\$user = [
"name" => "Alice",
"email" => "[email protected]",
];
echo \$user["email"];
// Short syntax (PHP 5.4+)
\$nums = [1, 2, 3];
// Array destructuring (PHP 7.1+)
[\$a, \$b] = [1, 2];
['name' => \$name] = \$user;Multidimensional Arrays
\$matrix = [[1,2],[3,4]];
echo \$matrix[0][1]; // 2