当前位置:Gxlcms > PHP教程 > PHP用switchreturn返回值有关问题

PHP用switchreturn返回值有关问题

时间:2021-07-01 10:21:17 帮助过:20人阅读

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

分享到:


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

人气教程排行