vote up 0 vote down star

I've tested this and it works fine, but it looks... weird... to me. Should I be concerned that this is nonstandard form which will be dropped in a future version of PHP, or that it may stop working? I've always had a default case as the final case, never as the first case...

switch($kind)
{
    default:
    	// The kind wasn't valid, set it to the default
    	$kind = 'kind1';
    	// and fall through:

    case 'kind1':
    	// Do some stuff for kind 1 here
    	break;

    case 'kind2':
    	// do some stuff for kind2 here
    	break;

    // [...]

    case 'kindn':
    	// do some stuff for kindn here
    	break;

}

// some more stuff that uses $kind here...

(In case it's not obvious what I'm trying to do is ensure $kind is valid, hence the default: case. But the switch also performs some operations, and then $kind is used after the switch as well. That's why default: falls through to the first case, and also sets $kind)

Suggestions? Is this normal/valid syntax?

flag

Also wanted to mention -- I am not a PHP noob. I just wanted to get other PHP pros' opinions – Josh Aug 6 at 21:46

5 Answers

vote up 5 vote down check

It is an unusual idiom, it causes a little pause when you're reading it, a moment of "huh?". It works, but most people would probably expect to find the default case at the end:

switch($kind)
{
    case 'kind2':
        // do some stuff for kind2 here
        break;

    // [...]

    case 'kindn':
        // do some stuff for kindn here
        break;]

    case 'kind1':
    default: 
        // Assume kind1
        $kind = 'kind1';

        break;

}
link|flag
I agree and every other switch I've ever written in my 10+ years of programming have been like that. But in this one case, if I write it like that I'd need two switch statements. – Josh Aug 6 at 21:52
Ok, I take that back. I'd need: case 'kind1': default: $kind='kind1'; – Josh Aug 6 at 21:53
+1 This is definitely a more agreeable form – Justin Johnson Aug 6 at 21:54
Ok, sorry, I don't know how I missed that in your answer. I may go that route just for clarity. – Josh Aug 6 at 21:54
After so many people's initial reaction was the same as mine, I decided this was the way to go. – Josh Aug 6 at 21:57
vote up 2 vote down

Kind of made me twinge at first, but that's just because we're not use to seeing things that way.

I would suggest that you document this highly, since some might call this "tricky" code. A noob or some future maintainer might come along and move it to the bottom where they're more comfortable with it and break the side-effect that is has being at the top.

link|flag
vote up 2 vote down

I'd personally prefer to do

switch($kind)
{
    case 'kind2':
        // do some stuff for kind2 here
        break;

    // [...]

    case 'kindn':
        // do some stuff for kindn here
        break;

    case 'kind1':
    default:
        $kind = 'kind1'; // Redundant if it's already set as 'kind1', but that doesn't make any difference to the code.
        // Do some stuff for kind 1 here
        break;

}
link|flag
Thanks, that's what I decided to do. I accepted Paul's answer though because he was first. But +1 for you :-) – Josh Aug 6 at 21:58
am too slow tonight! – Mez Aug 6 at 22:00
Yeah that happens to me all the time -- it sucks! Sorry :-) – Josh Aug 6 at 22:07
vote up 1 vote down

Common practice is to define the default option as last option. But I see nothing wrong with your solution (if there is no predefined schema in your company how to layout your code)

link|flag
Cool thanks. As the lead developer of my company I get to set a precedence :-) (another reason I want to get other's opinions before choosing my path) – Josh Aug 6 at 21:51
Then you should set the standard to default as last option in a switch statement. I looks "normal" to the majority of programmers. – Henrik P. Hessel Aug 6 at 21:53
And since every other switch statement in the code is that way, I agree. Thanks! – Josh Aug 6 at 21:57
You're not trying to set that as a precedence are you? that's going to make any future devvies cringe! – Mez Aug 6 at 21:57
why not? I never saw Josh's layout before :) and I did a lot php years ago *g – Henrik P. Hessel Aug 6 at 22:00
vote up 0 vote down

it looks... weird... to me

Me too! But if it makes syntactical sense to do this, I think you are fine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.