Skip to content

Instantly share code, notes, and snippets.

@mishterk
Created October 25, 2019 09:08
Show Gist options
  • Save mishterk/b7c51859787d07a38d062457a656ca94 to your computer and use it in GitHub Desktop.
Save mishterk/b7c51859787d07a38d062457a656ca94 to your computer and use it in GitHub Desktop.
Dump defined variables for a quick look at what's available in the current context. For more info see https://philkurth.com.au/tips/dump-defined-variables-for-a-quick-look-at-what's-available-in-the-current-context/
<?php
echo '<pre>';
var_dump(get_defined_vars());
echo '</pre>;
<?php
var_dump(get_defined_vars());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment