Switch Case语句中多个值匹配同一个代码块的写法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Switch Case语句中多个值匹配同一个代码块的写法相关的知识,希望对你有一定的参考价值。
switch ($p) { case ‘home‘: case ‘‘: $current_home = ‘current‘; break; case ‘users.online‘: case ‘users.location‘: case ‘users.featured‘: case ‘users.new‘: case ‘users.browse‘: case ‘users.search‘: case ‘users.staff‘: $current_users = ‘current‘; break; case ‘forum‘: $current_forum = ‘current‘; break; }
http://www.cnblogs.com/mssql8/p/3864197.html
以上是关于Switch Case语句中多个值匹配同一个代码块的写法的主要内容,如果未能解决你的问题,请参考以下文章