This commit is contained in:
hujiabin 2022-11-11 13:52:36 +08:00
parent d950686864
commit 24e610fb85

View File

@ -20,11 +20,11 @@ class ChipPlugin extends BaseModel
) )
); );
if ($row){ if ($row){
$temp = array( $chips = array(
$row['chip1'],$row['chip2'],$row['chip3'],$row['chip4'] $row['chip1'],$row['chip2'],$row['chip3'],$row['chip4']
); );
// $chips = array_filter($temp); // $chips = array_filter($temp);
} }
return implode('|',$temp); return implode('|',$chips);
} }
} }