48

PHOTO EMBED

Tue Mar 05 2024 13:03:22 GMT+0000 (Coordinated Universal Time)

Saved by @codewarrior

// Creating an associative array
$person = array(
    "name" => "John",
    "age" => 25,
    "city" => "New York"
);

// Accessing elements by key
echo $person["name"]; // Outputs "John"
echo $person["age"];  // Outputs 25
echo $person["city"]; // Outputs "New York"
content_copyCOPY