Skip to content

Instantly share code, notes, and snippets.

@Martin1982
Created March 12, 2012 19:28
Show Gist options
  • Save Martin1982/2024135 to your computer and use it in GitHub Desktop.
Save Martin1982/2024135 to your computer and use it in GitHub Desktop.
Nested arrays
<?php
$shop = array(
'electronics' => array(
'stereo set',
'speakers'
'tv'
),
'software' => array(
'games',
'office',
'graphics'
)
);
echo "I want to buy a " . $shop['electronics'][0];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment