Skip to content

Instantly share code, notes, and snippets.

@LA1720
Created October 4, 2020 12:32
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 LA1720/6d93a167b5190d51239962d4a944ccad to your computer and use it in GitHub Desktop.
Save LA1720/6d93a167b5190d51239962d4a944ccad to your computer and use it in GitHub Desktop.
Créer la filmographie d'Indiana II
<?php
$films = [
'Indiana Jones et la temple maudit' => ['Harrison Ford','Karen Allen','Pail Freeman'],
"Les aventuriers de l'arche perdue" => ['Harrison Ford','Kate Capshaw','Ke Huy Quan'],
'Indiana Jones et la dernière croisade' => ['Harrison Ford','Sean Connery','Alison Doody']
];
// var_dump($films);
foreach($films as $movie_title => $name_of_the_actor){
var_dump('Titre de film'.' - '.$movie_title);
foreach($name_of_the_actor as $name_of_the_actor) {
var_dump('les actros sont'.' - '.$name_of_the_actor);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment