大写 ISO2 列表 */ public static function parseAllowedCountries(string $storage): array { if (trim($storage) === '') { return []; } $result = []; foreach (explode(',', $storage) as $code) { $code = strtoupper(trim($code)); if ($code !== '' && !in_array($code, $result, true)) { $result[] = $code; } } return $result; } }