Skip to content

Instantly share code, notes, and snippets.

@pierrealexaline
Created March 31, 2020 15:52
Show Gist options
  • Select an option

  • Save pierrealexaline/70592785a62701f13d62c96b444c2da2 to your computer and use it in GitHub Desktop.

Select an option

Save pierrealexaline/70592785a62701f13d62c96b444c2da2 to your computer and use it in GitHub Desktop.
WCS - Debuggage en PHP - vardump et xdebug
<?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

Copy link
Copy Markdown
Author

var_dump

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