php输出图片
程序员文章站
2023-12-28 23:03:34
...
两种方式:
1).echo '';
2).
$img = file_get_contents('http://localhost/zouTest/800.jpg');
header('Content-type: image/jpeg');
echo $img;