首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

PHP 用switch return 返回值有关问题

2013-11-23 
PHP 用switch return 返回值问题 public function banben(){$this-load-library(LibUser)$cc switch

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 回去呢?大虾 出来PHP 用switch return 返回值有关问题 switch php library
[解决办法]
当然可以啊,你都写好了,测试下不就知道了吗?

热点排行