$x = 5;
$y = 10;
function test($a, $b) {
static $a, $b;
return $a + $b;
}
print test($a, $b);
为什么此代码打印 0 作为值?
梵蒂冈之花
相关分类