标签: php scope
我做了以下程序 -
<?php global $a; $a= "me"; echo $a; function myname() { echo $a; } myname(); ?>
第一个echo工作但第二个(在函数内部)表示未定义的变量a
有什么问题?