我需要创建一个返回JPEG图像的php文件。 我写了这段代码,但它不起作用:
<?php
header('Content-type: image/jpeg;');
$p = 'http://....file.jpeg';
$a = file_get_contents('$p');
echo $a;
?>
出了什么问题?我认为这太简单了
答案 0 :(得分:1)
删除单引号:
<?php
header('Content-type: image/jpeg;');
$p = 'http://....file.jpeg';
$a = file_get_contents($p);
echo $a;
?>
答案 1 :(得分:1)
您只需使用<img>
代码即可。
<?php
$src = 'file.jpeg';
?>
<img src='<?php echo $src ?>'>
如果这不是您要查找的功能,请查看如何Show image using file_get_contents。