Skip to content

Instantly share code, notes, and snippets.

@Karnak19
Created October 15, 2018 12:15
Show Gist options
  • Save Karnak19/47f46c37a45cc58f75c74c40090416bd to your computer and use it in GitHub Desktop.
Save Karnak19/47f46c37a45cc58f75c74c40090416bd to your computer and use it in GitHub Desktop.
<?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