第93题 【单项选择】 (1分) : 以下内容输出结果为:$a = 0;switch ($a) { case $a >= 0: echo 0; break; case $a >= 10: echo 1; break; default: echo 2; break;}exit();