From: Hypolite Petovan Date: Fri, 23 Oct 2020 06:03:28 +0000 (-0400) Subject: Use CurlResult->getHeaderArray instead of custom conversion X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9e143287d65a3a5d169b5203c20e99b2bd5b0088;p=friendica.git Use CurlResult->getHeaderArray instead of custom conversion --- diff --git a/mod/parse_url.php b/mod/parse_url.php index 1904d9219d..5061035df2 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -88,16 +88,8 @@ function parse_url_content(App $a) $curlResponse = DI::httpRequest()->head($url); if ($curlResponse->isSuccess()) { - // Convert the header fields into an array - $hdrs = []; - $h = explode("\n", $curlResponse->getHeader()); - foreach ($h as $l) { - $header = array_map('trim', explode(':', trim($l), 2)); - if (count($header) == 2) { - list($k, $v) = $header; - $hdrs[$k] = $v; - } - } + $hdrs = $curlResponse->getHeaderArray(); + $type = null; $content_type = ''; $bbcode = '';