Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Leer Associative Arrays | Arrays
Introduction to PHP

book
Associative Arrays

Associative arrays in PHP are arrays that provide a mapping between keys and values. They are used to store data in the form of key-value pairs, where each key is unique and associated with a specific value.

Creation Syntax


Associative arrays are created using the key operator => to establish the relationship between the key and the value. For example:

php

main

copy
$user = [
"name" => "John",
"age" => 30,
"city" => "New York"
];
12345
$user = [ "name" => "John", "age" => 30, "city" => "New York" ];

As a result, this code creates an associative array $user with three keys: "name", "age", and "city", and their corresponding values: "John", 30, and "New York". You can access these values using their respective keys:

php

main

copy
<?php
$user = array(
"name" => "John",
"age" => 30,
"city" => "New York"
);

echo $user["name"]; // Output "John"
?>
123456789
<?php $user = array( "name" => "John", "age" => 30, "city" => "New York" ); echo $user["name"]; // Output "John" ?>
Taak

Swipe to start coding

Fill in the blanks in the code to create an associative array $person with three key-value pairs (e.g., 'name' => 'John', 'age' => 25, 'profession' => 'Engineer'). Then, access the value by the key 'name' and print it to the screen.

Oplossing

<?php
$person = [
'name' => 'John',
'age' => 25,
'profession' => 'Engineer'
];

echo 'Name: ' . $person['name'];
?>

Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 4. Hoofdstuk 3
<?php
// Fill in the blanks to create an associative array with three key-value pairs
$person = [
___ => 'John',
'age' ___ 25,
'profession' => ___
];

// Access the value by the key 'name' and print it to the screen
echo 'Name: ' . $person[___];
?>

Vraag AI

expand
ChatGPT

Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.

We use cookies to make your experience better!
some-alt