Is there a function and/or object and/or extension in PHP that will let you view all the variabled defined in the current scope? Something like
var_export($GLOBALS)
but only showing variables in the current symbol table.
|
|
|
|
|
|
|
|
||
|
|
|
|
get_defined_vars() does exactly what you want.
|
||||||
|