Diogo Neves a écrit :
Hi,
Well, I see a good reason anyway...
U can have a lot of entry points and only one to exit...
Like:
I misunderstood the question :-/ I read Govinda had a strange
behavior that ignore the break :-D
--
Mickaël Wolff aka Lupus Michaelis
http://lupusmic.org
--
PHP Ge
Hi,
Well, I see a good reason anyway...
U can have a lot of entry points and only one to exit...
Like:
switch ($i) {
case 0:
echo "\$i < 1";
case 1:
echo "\$i < 2";
case 2:
echo "\$i < 3";
default:
echo "\$i > 2";
}
Or
switch ($i) {
case 0:
case 1:
case 2:
echo "\$i < 3";
brea
Govinda a écrit :
Or is there a better reason?
What is exactly in $i ? A scalar integer, a string containing an
integer ? A boolean ? What version of PHP ?
--
Mickaël Wolff aka Lupus Michaelis
http://lupusmic.org
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: htt
3 matches
Mail list logo