首页课程Cours amusant PHPinstruction de commutation

instruction de commutation

目录列表

下面那些语句不可以替代switch语句?

填写空格使代码运行正确

<?php $i = 1; switch($i) { "1": echo 'One'; ; case "2": echo 'Two'; break; }

以下代码最终的输出结果是什么?&lt;?php $mo = &quot;December&quot;; switch ($mo) { case &quot;July&quot;: echo &quot;Summer&quot;; break; case &quot;January&quot;: echo &quot;Winter&quot;;default:echo&quot;Other;}

1/4