Skip to content

Instantly share code, notes, and snippets.

@Chojiu15
Created October 18, 2018 10:35
Show Gist options
  • Save Chojiu15/31255fee93eb585441b54015c8ac515a to your computer and use it in GitHub Desktop.
Save Chojiu15/31255fee93eb585441b54015c8ac515a to your computer and use it in GitHub Desktop.
indianamovies.php
<?php
$films = [
'Indiana Jones et le Royaume du Crâne de Cristal' => ['Harrison Ford', 'Cate Blanchett', 'Karen Allen'],
'Indiana Jones et la Dernière Croisade' => ['Harrison Ford', 'Sean Connery', 'Denholm Elliot'],
'Indiana Jones et le Temple maudit' => ['Harrison Ford', 'Kate Capshaw', 'Jonathan Ke Quan' ]
];
foreach($films as $k => $values)
{
$str = 'Dans le film '.$k.' les principaux acteurs sont : ';
foreach($values as $values)
{
$str .=$values.', ';
}
$str = rtrim($str, ', ');
echo $str.'.<br>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment