Skip to content

Instantly share code, notes, and snippets.

@eikyuu
Created September 23, 2019 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eikyuu/f43471b7cc35a25b74c5d87d96f5392a to your computer and use it in GitHub Desktop.
Save eikyuu/f43471b7cc35a25b74c5d87d96f5392a to your computer and use it in GitHub Desktop.
<?php
$characters = [
"Negan" => [
"city" => "The Sanctuary",
"weapon" => "Lucille"
],
"Daryl" => [
"city" => "Alexandria",
"weapon" => "crossbow"
],
"Ezekiel" => [
"city" => "The Kingdom",
"weapon" => "Shiva"
],
"Vincent Duguet" => [
"City" => "Sorigny",
"weapon" => "Crossbow"
]
];
var_dump($characters);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment