I am trying to get a variable on my page to equal the result of a switch I have.

This is the code:

$payment_method = switch ($cardtype) {
case "visa" : echo "VSA"; break;
case "mastercard" : echo "MSC"; break;
case "maestro" : echo "MAE"; break;
case "amex" : echo "AMX" ; break;
default : echo "Please specify a payment method!"; break;
};

How can I get $payment_method to equal the result of this????

So far I recieve an error:

Parse error: syntax error, unexpected T_SWITCH in /var/www/account/credits/moneybookers/process.php on line 65
link|improve this question

possible duplicate of php troubles with coding variables – Your Common Sense May 23 '10 at 14:09
@Col. Shrapnel: lol, the same question from the same user %-) – zerkms May 23 '10 at 14:13
Not quite the same. He's asking for the variable assignment now, not echo. But that's why all these codes a bad: he's just copy/baste it without understanding. – Your Common Sense May 23 '10 at 14:17
feedback

6 Answers

up vote 0 down vote accepted

You should assign the value within the switch:

switch ($cardtype) {
    case "visa":
        $payment_method = "VSA";
    break;
    case "mastercard":
        $payment_method = "MSC";
    break;
    case "maestro":
        $payment_method = "MAE";
    break;
    case "amex":
        $payment_method = "AMX";
    break;
    default:
        echo "Please specify a payment method!";
    break;
};
link|improve this answer
feedback

do in this way:

$types = array('visa' => 'VSA', 'mastercard' => 'MSC', 'maestro' => 'MAE', 'amex' => 'AMX');
if (isset($types[$cardtype])) {
    $payment_method = $types[$cardtype];
} else {
    echo 'Please specify a payment method!';
}
link|improve this answer
feedback

You should do:

$payment_method = '';

switch ($cardtype) {
  case "visa" : $payment_method = "VSA"; break;
  case "mastercard" : $payment_method = "MSC"; break;
  case "maestro" : $payment_method = "MAE"; break;
  case "amex" : $payment_method = "AMX" ; break;
}

if (strlen($payment_method))
{
  echo $payment_method;
}
else
{
  echo "Please specify a payment method!";
}
link|improve this answer
default : $payment_method = "Please specify a payment method!"; // with this implementation it will be impossible to get is payment method valid or not. – zerkms May 23 '10 at 14:11
1  
@zerkms: right, fixed main, please consider your down vote. Thanks – Web Logic May 23 '10 at 14:12
@Wed Logic: fixed ;-) btw, he will get notice with this code, when $cardtype is invalid – zerkms May 23 '10 at 14:14
@zerkms: What he would notice, could not get you? – Web Logic May 23 '10 at 14:20
now - nothing. i have commented the revision #2 without if(strlen()), which you have added later ;-) – zerkms May 23 '10 at 14:27
feedback

You can't use the switch construct this way. You would have to assign $payment_method within the case parts.

In your case, seeing as you're echo ing anyway, you can just remove $payment_method = and it should work.

What would be much, much easier, though, is putting all the stuff into an array:

$payment_methods = array(
  "visa" => "VSA",
  "mastercard" => "MSC",
  "maestro" => "MAE",
  "amex" => "AMX"
);

if (!array_key_exists($cardtype, $payment_methods))
 echo "Please specify a payment method!";
else
 echo "Your method: ".$payment_methods[$cardtype];
link|improve this answer
feedback

Use arrays!

$types = array("visa"       => "VSA",
               "mastercard" => "MSC",
               "maestro"    => "MAE",
               "amex"       => "AMX");

$type = $types[$cardtype] or echo "Please specify a payment method!";
link|improve this answer
feedback

For your application, an associative array will be the best solution. To answer your question however, you can build your own switch/case out of ? operators

var card  = 'amex'; //however you retrieve that value

var method = card == 'visa' ? 'VSA' : card == 'mastercard' ? 'MSC' : card == 'maestro' ? 'MAE' : card == 'amex' : 'AMX' : null;  //default value is null

//  store error msgs elsewhere in the code, to ease translation/alteration
var errs = {
 'ENG', {'Please specify a payment method', '...', '...', '...'},
 'ESP', {'Favor, indique la forma de pago', '...', '...', '...'},
 'DEU', {'Bitte geben Sie eine Zahlungsmethode', '...','...','...'}
}

//  alert the appropriate error message, in the current language

var currentLang = 0; //however you set that value
if(!method) alert(errs[currentLang][0]);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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