Skip to content

Instantly share code, notes, and snippets.

@kuronana
Created September 13, 2018 08:22
Show Gist options
  • Select an option

  • Save kuronana/8d0952696fac9b33ffb65ea36bb3af78 to your computer and use it in GitHub Desktop.

Select an option

Save kuronana/8d0952696fac9b33ffb65ea36bb3af78 to your computer and use it in GitHub Desktop.
<?php
$tab1 = [
'Indiana Jones and the Kingdom of the Crystal Skull' => ['Harrison Ford', 'Cate Blanchett', 'Karen Allen' ],
'Indiana Jones and the Last Crusade' => ['Harrison Ford', 'Sean Connery', 'Denholm Elliott' ],
'Indiana Jones and the Temple of Doom' => [' Harrison Ford', 'Kate Capshaw', 'Jonathan Ke Quan' ]
];
foreach ($tab1 as $film => $acteur) {
echo 'Dans le film '.$film.', les principaux acteurs sont : '.$acteur[0].', '.$acteur[1].', '.$acteur[2].'.<br/>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment