mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
23 lines
607 B
PHP
23 lines
607 B
PHP
|
<?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) {
|
||
|
$pattern = "/^".preg_quote(trim($t), "/")."($|;|,)/i";
|
||
|
if (preg_match($pattern, $header)) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|