![]() |
1
24
您应该利用switch语句的失败:
这个 PHP man page 有一些这样的例子。 |
![]() |
2
6
我认为你需要的是:
有趣的是,我听说Perl正在(甚至可能现在已经)引入这种语法,其内容如下:
我不是
大的
喜欢这种语法,因为我不得不写很多词汇解析器,并且相信语言应该尽可能的清晰。但是,Perl以前用那些可怕的尾部解决了所有这些问题。
|
![]() |
3
5
相反,使用
|
![]() |
4
1
是的,我认为你得到的相当于: <?php $foo = 5000 ; switch( $foo ) { case true : // Gzipp: an '=='-style comparison is made echo 'first one' ; // between $foo and the value in the case break; // so for values of $foo that are "truthy" // you get this one all the time. case 2: echo 'second one'; break; default: echo 'neither' ; break; } ?> |
![]() |
5
0
不,如果你写的话
switch ($foo) { case 3: case 5: bar(); break; case 2: apple(); break; } |
![]() |
Jacco · 未能格式化我的日期以在php中正确工作 1 年前 |
![]() |
jay ram · 如何在URL核心php中从API获取JSON? 1 年前 |
|
Ishwarya A · php电子表格在浏览器中显示多张excel 1 年前 |