Created
March 31, 2020 15:52
-
-
Save pierrealexaline/70592785a62701f13d62c96b444c2da2 to your computer and use it in GitHub Desktop.
WCS - Debuggage en PHP - vardump et xdebug
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" | |
| ], | |
| "Pierre" => [ | |
| "city" => "Bayonne", | |
| "weapon" => "Ak12 LG" | |
| ] | |
| ]; | |
| // Good old debug modes :)° : | |
| var_dump($characters); |
pierrealexaline
commented
Mar 31, 2020
Author

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