while (!$a) {
$a++;
echo $a;
static $a = 0;
}
当 $a 没有初始值时,为什么循环体还会被执行,难道没有初始化的变量会被自动着判断为 0 ?如果是这样,为什么还是会报 Notice 级的警告?
Tobey_滔
Lemon156
相关分类