vote up 3 vote down star

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.

flag

2 Answers

vote up 11 vote down check

get_defined_vars

This function returns a multidimensional array containing a list of all defined variables, be them environment, server or user-defined variables, within the scope that get_defined_vars() is called.

link|flag
vote up 7 vote down

get_defined_vars() does exactly what you want.

This function returns a multidimensional array containing a list of all defined variables, be them environment, server or user-defined variables, within the scope that get_defined_vars() is called.

>>> function test($foo) { print_r(get_defined_vars()); }
>>> test('bar');
Array
(
    [foo] => bar
)
link|flag
The >>> ..., is there some command line PHP console I don't know about? – Alan Storm Apr 4 at 21:43
Yes, it's called phpa, you can get it here: david.acz.org/phpa You could also use the command php -a to run PHP interactively, but it's missing some important features. – jeremy Ruten Apr 4 at 21:49
Also: jan.kneschke.de/projects/php-shell – troelskn Apr 4 at 21:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.