startOfDay(); } /** * 按直播日期分组稿件,返回 ['Y-m-d' => [video, ...]],按日期升序。 * 标题无法解析的稿件不会进入结果。 */ public static function group_by_live_date(iterable $videos): array { $grouped = []; foreach ($videos as $video) { $date = static::parse_live_date($video->title ?? null); if ($date === null) { continue; } $grouped[$date->format("Y-m-d")][] = $video; } ksort($grouped); return $grouped; } }