Associative Array

//Basic Array
$animals = array('cat', 'dog', 'pig');

//Associative Array
$animalsSounds = array(
    'cat' => 'meow',
    'dog' => 'woof',
    'pig' => 'oink'
);

echo $animalsSounds['dog']; //would print woof
Scroll to Top