PHP7.3中在switch中使用continue语句会出现如题警告。
while ($foo) { switch ($bar) { case "baz": continue; // In PHP: Behaves like "break;" // In C: Behaves like "continue 2;" } }
使用break或者continue 2代替。
------------正 文 已 结 束, 感 谢 您 的 阅 读 (折雨的天空)--------------------
转载请注明本文标题和链接:《Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?》
发表评论