随天马行空
代表着 如果 $_total变量值为true,既非零非空等值,则赋值给 $this->total ,
如果不为true,则$this->total=1;
举例如下:
$_total =3 ;或者 $_total='abc'等非空的值,
$this->total = $_total ? $_total : 1;
结果 $this->total = $_total ;
$_total =0 ;或者 $_total='' 、 $_total=null 、 $_total=false 等值,
$this->total = $_total ? $_total : 1;
结果 $this->total = 1;