Skip to content

Instantly share code, notes, and snippets.

@8ctopotamus
Last active September 30, 2018 18:38
Show Gist options
  • Select an option

  • Save 8ctopotamus/f67305cd532eedaa4c224377a5af6aa8 to your computer and use it in GitHub Desktop.

Select an option

Save 8ctopotamus/f67305cd532eedaa4c224377a5af6aa8 to your computer and use it in GitHub Desktop.
var_dump() looks like s***. Make it readable for humans.
function var_awesome($value) {
echo '<pre>';
var_export($value);
echo '</pre>';
}
// useage
$example_arr = array('testing', 1, 2, 3);
var_awesome($example_arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment