Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. $characters = [
  4. "Negan" => [
  5. "city" => "The Sanctuary",
  6. "weapon" => "Lucille"
  7. ],
  8. "Daryl" => [
  9. "city" => "Alexandria",
  10. "weapon" => "crossbow"
  11. ],
  12. "Ezekiel" => [
  13. "city" => "The Kingdom",
  14. "weapon" => "Shiva"
  15. ],
  16. "Sebastien" => [
  17. "city" => "Fondcombe",
  18. "weapon" => "Fourchette"
  19. ]
  20. ];
  21. var_dump($characters);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement