Do you need break in switch when return is used?

后端 未结 8 1783
温柔的废话
温柔的废话 2021-01-30 18:56

I was wondering if I need to use \"break\" in \"switch\" function when \"return\" is used.

function test($string)
{
  switch($string)
  {
    case \'test1\':
            


        
8条回答
  •  失恋的感觉
    2021-01-30 20:02

    No its not necessary , because when the key word return is called it will indicate that the particular function which the switch/case was called has come to an end.

提交回复
热议问题