Skip to content

Instantly share code, notes, and snippets.

@StolenThunda
Last active February 1, 2019 02:26
Show Gist options
  • Save StolenThunda/fa974496b6ad95037699d22791ca221b to your computer and use it in GitHub Desktop.
Save StolenThunda/fa974496b6ad95037699d22791ca221b to your computer and use it in GitHub Desktop.
Print string name of var
function print_var_name($var) {
\!h foreach($GLOBALS as $var_name => $value) {
if ($value === $var) {
return $var_name;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment