case语句里面有return了,break还起作用吗?比如:switch(ID){case1:return1;break;//还能执行到break吗?
如果仅仅是用return 没法堵住,还得要break来帮忙啊
switch($gametype)
{
case 1:
{
if ($gametimes[0]['FSum'] >= 36)
{
return "&status=4";
}
break;
}
case 2:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
case 3:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
case 4:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
case 5:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
}
}
{
case 1:
{
if ($gametimes[0]['FSum'] >= 36)
{
return "&status=4";
}
break;
}
case 2:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
case 3:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
case 4:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
case 5:
{
if ($gametimes[0]['FSum'] >= 20)
{
return "&status=4";
}
break;
}
}
}
如果仅仅是用return 没法堵住,还得要break来帮忙啊
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/2290/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2009-12-1 11:36
评论列表