]> git.mxchange.org Git - friendica.git/blobdiff - mod/parse_url.php
Use CurlResult->getHeaderArray instead of custom conversion
[friendica.git] / mod / parse_url.php
index 1904d9219d4da21b4138e323936c048040843993..5061035df27cbb49d7c49672c0aa5db0a4e79295 100644 (file)
@@ -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 = '';