Created
October 17, 2019 09:02
-
-
Save stephanBerger/9722b94a1447d7f8f7c23f709207d179 to your computer and use it in GitHub Desktop.
4. Les tableaux && boucles en PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$indianaMovies = [ | |
"Indiana Jones and the Kingdom of the Crystal Skul" => [ | |
"Harrison Ford", | |
"Cate Blanchette", | |
"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 ($indianaMovies as $movieTitle => $actors){ | |
echo "Dans le film " . $movieTitle . ", les principaux acteurs sont : ".implode(", ",$actors).".\n"; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment