Skip to content

Instantly share code, notes, and snippets.

@ConnorFM
Created March 11, 2019 15:30
Show Gist options
  • Save ConnorFM/a0a713c2ea23e149cfd9f245729e8b5f to your computer and use it in GitHub Desktop.
Save ConnorFM/a0a713c2ea23e149cfd9f245729e8b5f to your computer and use it in GitHub Desktop.
<?php
$movieTitles = [
'Raiders of the Lost Ark' => ['Harrisson Ford', 'Karen Allen', 'Paul Freeman'],
'Indiana Jones & The Temple of Doom' => ['Harrisson Ford', 'Kate Capshaw', 'Jonathan Ke Quan'],
'Indiana Jones & the Last Crusade' => ['Harrisson Ford', 'Sean Connery', 'Denholm Elliott']
];
foreach ($movieTitles as $key => $value) {
echo "Dans le film $key les principaux acteurs sont : $value[0] , $value[1], $value[2]".'<br>' ;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment