Created
September 24, 2019 16:04
-
-
Save krez69/4e7b120621c4e0cec0dde2a2ac95e771 to your computer and use it in GitHub Desktop.
This file contains 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 | |
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