Multidimensional Arrays
Arrays containing other arrays. Useful for tabular data, JSON, and database results.
Arrays containing other arrays. Useful for tabular data, JSON, and database results.
<?php
// 2D array (like a table)
$students = [
["Alice", 25, "A"],
["Bob", 22, "B"],
["Carol", 28, "A+"],
];
echo $students[0][0]; // Alice
echo $students[1][2]; // B
// Associative multidimensional
$config = [
"db" => [
"host" => "localhost",
"port" => 3306,
"name" => "mydb",
],
"cache" => [
"driver" => "redis",
"ttl" => 3600,
],
];
echo $config["db"]["host"]; // localhost
?>