Skip to content

Instantly share code, notes, and snippets.

@sele-nap
Last active March 24, 2022 22:22
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 sele-nap/65630e93e2137c2d266fc4449f60a6f1 to your computer and use it in GitHub Desktop.
Save sele-nap/65630e93e2137c2d266fc4449f60a6f1 to your computer and use it in GitHub Desktop.
WCS quest // 7. Debug toi même en PHP
<?php
$characters = [
"Negan" => [
"city" => "The Sanctuary",
"weapon" => "Lucille"
],
"Daryl" => [
"city" => "Alexandria",
"weapon" => "crossbow"
],
"Ezekiel" => [
"city" => "The Kingdom",
"weapon" => "Shiva"
],
"Meow" => [
"city" => "Lyon",
"weapon" => "Kniffe"
]
];
var_dump($characters);
@sele-nap
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment