在方法里面想用外面的变量,可以声明这个变量为全局变量。
$a=1; $b=2; test_global(); function test_global() { global $a,$b; echo $a+$b; //输出3 }