我正在尝试通过 php 脚本将图像提供给 html。但我被卡住了,它不工作:-(下面是我的 image.php 脚本
<?
$_GET['f'] = 'all_three.jpg';
$image = null;
$image = file_get_contents($_GET['f']);
header("Content-Type: image/jpeg");
echo $image;
?>
下面是我的 index.html
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Page Title</title>
</head>
<body>
<img src="image.php" alt="Image" />
</body>
</html>
图像的链接在 php 中是“硬编码的”,我所做的只是调用“image.php”来提供该硬编码的图像,但它不起作用!我究竟做错了什么?