Skip to content

Instantly share code, notes, and snippets.

@vigi3
Last active September 11, 2018 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vigi3/ceb9861c3ee407bb6f78c88a065c001a to your computer and use it in GitHub Desktop.
Save vigi3/ceb9861c3ee407bb6f78c88a065c001a to your computer and use it in GitHub Desktop.
<?php
$film=[
'Indiana Jones et le Royaume du Crane de Cristal' => ['Harrison Ford', 'Cate Blanchett', 'Shia Leboeuf'],
'Indiana Jones et la Derniere Croisade'=> ['Harrison Ford', 'Sean Connery', 'John Rhys-Davies'],
'Les aventuriers de l Arche du perdue'=> ['Harrison Ford', 'Karen Allen', 'Paul Freeman'],
];
foreach ($film as $key => $value) {
echo "Dans le film $key, les principaux acteurs sont : ";
echo implode(', ', $value);
foreach ($value as $cle =>$value){
}
echo '.' ."<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment