Created
March 11, 2019 15:30
-
-
Save ConnorFM/a0a713c2ea23e149cfd9f245729e8b5f 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 | |
$movieTitles = [ | |
'Raiders of the Lost Ark' => ['Harrisson Ford', 'Karen Allen', 'Paul Freeman'], | |
'Indiana Jones & The Temple of Doom' => ['Harrisson Ford', 'Kate Capshaw', 'Jonathan Ke Quan'], | |
'Indiana Jones & the Last Crusade' => ['Harrisson Ford', 'Sean Connery', 'Denholm Elliott'] | |
]; | |
foreach ($movieTitles as $key => $value) { | |
echo "Dans le film $key les principaux acteurs sont : $value[0] , $value[1], $value[2]".'<br>' ; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment