FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » Switch question
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: Switch question [message #184603 is a reply to message #184600] Sun, 12 January 2014 17:26 Go to previous messageGo to previous message
Mr Oldies is currently offline  Mr Oldies
Messages: 241
Registered: October 2013
Karma:
Senior Member
On Sun, 12 Jan 2014 17:18:59 +0000 (UTC), Denis McMahon wrote:

> On Sun, 12 Jan 2014 11:48:48 -0500, richard wrote:
>
>> The manual for PHP switch shows no examples on how to use multiple
>> values for the same case.
>> In liberty basic I would use the following:
>> case 1,2,3,4 case "A","B","C"
>>
>> What is the equivelant in PHP?
>>
>> I use the following code to acquire a value:
>> $value=$_GET['v'];
>> switch ($value){
>> case "A";
>
> This is fucked up, despite what you may believe ":" is not the same as ";"
>
>> echo "Does Not Work!";
>> case A:
>> echo "Does Not Work!";
>> }
>>
>> So what is the proper way to ensure the proper case is found correctly?
>
> You seem to have missed the paragraph beginning "It is important to
> understand how the switch statement is executed in order to avoid
> mistakes." on the manual page. This paragraph answers your question.

for once I get to say, to you, >>>> RTFM!
: is used for constants.
; is used for strings.

As usuaul, I find the answer to my question.
Instead of commas, use ||.

case 1 || 2 || 3:
case "A" || "B" || "C";

The syntax is correct!
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: signed int64 pack/unpack
Next Topic: Trouble connecting to a PHP SoapServer module
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 10:47:34 GMT 2024

Total time taken to generate the page: 0.25158 seconds