我有一个具体问题,必须接手。
对于我的最新项目,我需要一份简单的PHP书,根据通过URL发送的身份证显示图像。 该法典:
header("Content-type: image/jpeg");
$img = $_GET["img"];
echo file_get_contents("http://www.somesite.hr/images/$img");
问题在于,尽管浏览器承认图像,但图像确实显示(我可以在网页上看到),但我还是拿到电子版的URL图像。
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.