self::BUCKET_APPLE, 'android', '安卓' => self::BUCKET_ANDROID, 'pc', 'windows', 'mac', 'macos', 'linux', 'chrome os', 'chromeos' => self::BUCKET_PC, 'h5', 'mobile', '移动', 'wechat', '微信' => self::BUCKET_MOBILE, default => self::BUCKET_UNKNOWN, }; } /** * 空计数骨架 * * @return array{total:int,apple:int,android:int,pc:int,mobile:int,wechat:int,unknown:int} */ public static function emptyCounts(): array { return [ 'total' => 0, 'apple' => 0, 'android' => 0, 'pc' => 0, 'mobile' => 0, 'wechat' => 0, 'unknown' => 0, ]; } }