Guest User

Untitled

a guest
Dec 10th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. $arr_films['starwars'] = array(
  2. 'filmnaam' => 'Star Wars - Episode IV',
  3. 'genre' => 'science fiction',
  4. 'acteurs' =>array(
  5. array('acteur' => 'Mark Hamill', 'pers' => 'Luke Skywalker'),
  6. array('acteur' => 'Harrison Ford', 'pers' => 'Han Solo'),
  7. array('acteur' => 'Carrie Fisher', 'pers' => 'Leia Organa')
  8. ),
  9. 'crew' =>array(
  10. 'regisseur' => 'George Lucas',
  11. 'componist' => 'John Williams'
  12. )
  13. );
  14. $arr_films['lord'] = array(
  15. 'filmnaam' => 'Lord of the Rings',
  16. 'genre' => 'fantasy',
  17. 'acteurs' =>array(
  18. array('acteur' => 'Bernard Hill', 'pers' => 'Theoden'),
  19. array('acteur' => 'Orlando Bloom', 'pers' => 'Legolas'),
  20. array('acteur' => 'Billy Boyd', 'pers' => 'Pippin')
  21. ),
  22. 'crew' =>array(
  23. 'regisseur' => 'Peter Jackson',
  24. 'componist' => 'Howard Shore'
  25. )
  26. );
Add Comment
Please, Sign In to add comment