首頁 >後端開發 >php教程 >PHP 用switch return 返回值有关问题

PHP 用switch return 返回值有关问题

WBOY
WBOY原創
2016-06-13 11:40:481475瀏覽

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
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn