Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2.  
  3. set_time_limit(6);
  4.  
  5.  
  6. $movies = [
  7. "Indiana Jones and the Kingdom of the Crystal Skull" => ["Harrison Ford", "Cate Blanchett", "Karen Allen",],
  8. "Indiana Jones and the Last Crusade" => ["Harrison Ford", "Sean Connery", "Denholm Elliott",],
  9. "Indiana Jones and the Temple of Doom" => ["Harrison Ford", "Kate Capshaw", "Jonathan Ke Quan",],
  10. ];
  11.  
  12. var_dump ($movies) ;
  13.  
  14. foreach ($movies as $movie => $names) {
  15. echo "Dans le film ";
  16. echo $movie ;
  17. echo ", les principaux acteurs sont: "."<br>";
  18. foreach ($names as $name => $actors) {
  19. echo $actors . "<br>";
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement