Вы пишите какую-т хрень. Проверяем - берем url реально существующей картинки на этом форуме и запрашиваем заголовки:
print_r(get_headers('https://javascript.ru/cat/list/js.gif', 1));
Ответ:
Код:
|
Array
(
[0] => HTTP/1.1 200 OK
[Date] => Thu, 12 Mar 2020 23:24:05 GMT
[Content-Type] => image/gif
[Content-Length] => 2602
[Connection] => close
[Set-Cookie] => __cfduid=d17f92f66d695c0ffc5d1e1bc04e392951584055445; ...
[Cache-Control] => max-age=315360000
[Cf-Bgj] => imgq:100
[Cf-Polished] => status=not_needed
[ETag] => "59159012-a2a"
[Expires] => Thu, 31 Dec 2037 23:55:55 GMT
[Last-Modified] => Fri, 12 May 2017 10:36:02 GMT
[CF-Cache-Status] => HIT
[Age] => 175
[Accept-Ranges] => bytes
[Expect-CT] => max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
[Server] => cloudflare
[CF-RAY] => 57314444aa28dfe3-FRA
) |
Изменим адрес на фиктивный, просто укажем несуществующее имя:
print_r(get_headers('https://javascript.ru/cat/list/j_s.gif', 1));
Ответ:
Код:
|
Array
(
[0] => HTTP/1.1 404 Not Found
[Date] => Thu, 12 Mar 2020 23:25:30 GMT
[Content-Type] => text/html; charset=utf-8
[Content-Length] => 162
[Connection] => close
[Set-Cookie] => __cfduid=d5cd26eb70e3ca33ff307d37733935bf61584055530; ...
[Cache-Control] => max-age=86400
[CF-Cache-Status] => EXPIRED
[Expect-CT] => max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
[Server] => cloudflare
[CF-RAY] => 5731465629ec1f45-FRA
) |
А что вы там у себя вытворяете, бог его знает.