Source Code:
(back to article)
<?php $employees = [ ["name" => "John", "age" => 30, "position" => "manager"], ["name" => "Jane", "age" => 25, "position" => "developer"], ["name" => "Bob", "age" => 35, "position" => "sales"] ]; echo $employees[0]["name"]; // Output: John
Result:
Report an issue