Created
October 17, 2019 20:14
-
-
Save stephanBerger/e18fdb64ef5b9549b60a50049664fce2 to your computer and use it in GitHub Desktop.
7. Debug toi même en PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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