Skip to content

Instantly share code, notes, and snippets.

@stephanBerger
Created October 17, 2019 20:14
Show Gist options
  • Save stephanBerger/e18fdb64ef5b9549b60a50049664fce2 to your computer and use it in GitHub Desktop.
Save stephanBerger/e18fdb64ef5b9549b60a50049664fce2 to your computer and use it in GitHub Desktop.
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"
],
"Stephan BERGER" => [
"city" => "Marseille",
"weapon" => "pied de biche"
]
];
var_dump($characters);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment