Skip to content

Instantly share code, notes, and snippets.

@krez69
Created September 24, 2019 16:04
Show Gist options
  • Save krez69/4e7b120621c4e0cec0dde2a2ac95e771 to your computer and use it in GitHub Desktop.
Save krez69/4e7b120621c4e0cec0dde2a2ac95e771 to your computer and use it in GitHub Desktop.
<?php
set_time_limit(5);
$movieIndiana = [
'Indiana Jones et le Royaume du Crâne de Cristal' => ['broly', 'goku','vegeta'],
'Indiana Jones et la Dernière Croisade' => ['bulma','picolo','trunks'],
'Indiana Jones et le Temple maudit' => ['yamcha','krilin','sangohan'],
];
foreach ($movieIndiana as $movie=>$actors){
echo "Dans le film $movie,".' ';
echo 'les principaux acteurs sont :' .' ';
foreach ($actors as $actor){
echo $actor .' ';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment