PHP Resim içerik türü sorun

0 Cevap php

Ben belirli bir sorunu var, ve cant üzerine olsun.

Benim en son proje için URL yoluyla gönderilen kendi kimliğine göre bir görüntü basit bir PHP komut dosyası gerekir. İşte kod:

header("Content-type: image/jpeg");
$img = $_GET["img"];
echo  file_get_contents("http://www.somesite.hr/images/$img");

Sorun tarayıcı yerine ben görüntü URL basılmış olsun, (i sayfa başlığında görebilirsiniz) tanıdığı rağmen görüntü görünmüyor olmasıdır.

It doesn't work neither on a server with remote access allowed nor with one without. Also, nothing is printed or echoed before the header.

I wonder if it is a content type error, or something else. Thanks in advance.

0 Cevap