php case 多个值,Switch Case语句中多个值匹配同一个代码块的写法 - 金牛座, 爬山虎, PHPCreeper, Workerman, Swoole, PHP爬虫引擎, PHP爬虫框...

第一种写法:

switch ($p) {

case 'home':

case '':

$current_home = 'current';

break;

case 'users.online':

case 'users.location':

case 'users.featured':

case 'users.browse':

$current_users = 'current';

break;

case 'forum':

$current_forum = 'current';

break;

default:

break;

}

第二种写法:

switch ($p)

{

case 'home':

$current_home = 'current';

break;

case 'users.online' || 'users.location' || 'users.featured' || 'users.browse':

$current_users = 'current';

break;

case 'forum':

$current_forum = 'current';

break;

default:

break;

}

你可能感兴趣的:(php,case,多个值)