2019-09-28 02:38:03 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\Misc;
|
|
|
|
|
|
|
|
use Psr\Http\Message\MessageInterface;
|
|
|
|
|
|
|
|
class HTTP {
|
|
|
|
public static function matchType(MessageInterface $msg, string ...$type): bool {
|
|
|
|
$header = $msg->getHeaderLine("Content-Type") ?? "";
|
|
|
|
foreach ($type as $t) {
|
2021-06-24 15:58:50 +00:00
|
|
|
$pattern = "/^".preg_quote(trim($t), "/")."\s*($|;|,)/Di";
|
2019-09-28 02:38:03 +00:00
|
|
|
if (preg_match($pattern, $header)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|