php输出图片
程序员文章站
2024-01-18 23:41:10
...
两种方式:
1).echo '';
2).
$img = file_get_contents('http://localhost/zouTest/800.jpg');
header('Content-type: image/jpeg');
echo $img;
上一篇: PL/SQL中的forall简单测试
下一篇: php中die是啥意思