切换字符串或多个IF语句

时间:2015-01-20 16:15:40

标签: php string switch-statement strcmp

我需要根据string的值执行操作。我认为如果我使用switch语句,它将比使用多个ifstrcmp函数慢。想法?

方法1:

switch ( $string ){
   case 'Hello': //do stuff
       break;
   case 'Howdy': //do stuff
       break;
}

方法2:

if ( strcmp($string, 'Hello') == 0 ) // do stuff
if ( strcmp($string, 'Howdy') == 0 ) // do stuff

哪一个最有效?

0 个答案:

没有答案