order('create_time desc')->column('create_time'); $timeList = []; foreach($create_times as $value) { $yearAndMonth = date("Y-m", $value); $timeList[] = $yearAndMonth; } $timeList = array_unique($timeList); return $timeList; } }