日期:2014-05-16  浏览次数:20470 次

PHP 用switch return 返回值问题
 public function banben(){

        $this->load->library('LibUser');   
       
        $cc ;
        switch ($this->libuser->getUserType()){
              case 1:
              $cc = $this->libuser->version("a");
              break; 
              case 2:  
              $cc = $this->libuser->version("b");
              case 6:  
              $cc = $this->libuser->version("c");
              break;
              default:
              $cc = "没有数据";
              break;
        }
        return $cc;
    }
----------------------------------------------------
前提我不想用ifelse ,用switch 能不能 return 回去呢?大虾 出来
switch php library

------解决方案--------------------
当然可以啊,你都写好了,测试下不就知道了吗?