Created
October 15, 2018 12:15
-
-
Save Karnak19/47f46c37a45cc58f75c74c40090416bd to your computer and use it in GitHub Desktop.
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 | |
$movies = [ | |
'Le Temple Maudit' => ['Harrison Ford', 'Kate Capshaw', 'Jonathan Ke Quan'], | |
'La Dernière Croisade' => ['Harrison Ford', 'Sean Connery', 'Denholm Elliott'], | |
'Le Royaume du Crâne de Cristal' => ['Harrison Ford', 'Karen Allen', 'Kate Blanchett'], | |
]; | |
foreach($movies as $cle => $actor) { | |
$string = 'Dans le film '.$cle.', les acteurs sont :'; | |
foreach($actor as $actor) { | |
$string .= " $actor,"; | |
} | |
$string = rtrim($string, ","); | |
$string .= ".<br>"; | |
echo $string; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment