我知道PHP中的$GLOBALS
大致相当于Python的globals()
,但它是否等同于locals()
?
我的Python:
>>> g = 'global'
>>> def test():
... l = 'local'
... print repr(globals());
... print repr(locals());
...
>>>
>>> test()
{'g': 'global', [...other stuff in the global scope...]}
{'l': 'local'}
我的PHP端口:
<?php
$g = 'global';
function test(){
$l = 'local';
print_r($GLOBALS);
//...please fill in the dots...:-)
}
test();
?>
Array
(
[g] => global
[...other stuff in the global scope...]
)
答案 0 :(得分:4)
get_defined_vars
是您正在寻找的。 p>
function test(){
$a = 'local';
$b = 'another';
print_r(get_defined_vars());
}
test();
#Array
#(
# [a] => local
# [b] => another
#)