Reply to Re: switch easy

Your name:

Reply:


Posted by Michael Fesser on 06/24/07 19:37

..oO(severin)

>What is the proper syntax (if exists) for:
>
>switch( $myswitch ){
> case "str1" | "str2" | "str3" | "str4":
> $_th = "user/".$url."/_thumb/".$file;
> break;
>
> default:
> $_th = $gfx."/file.gif";
>}

switch ($myswitch) {
case 'str1':
case 'str2':
case 'str3':
case 'str4':
$_th = "user/$url/_thumb/$file";
break;
default:
$_th = "$gfx/file.gif";
}

If there are just these two possible results, then you could also do it
with a simple in_array() check and a ternary operator (a shortcut for an
if-then-else statement):

$strings = array('str1', 'str2', 'str3', 'str4');
$_th = in_array($myswitch, $strings)
? "user/$url/_thumb/$file"
: "$gfx/file.gif";

Micha

[Back to original message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация