php 怎么读取一张网络图片 并输出给浏览器,

2024-12-18 16:15:51
推荐回答(1个)
回答1:

header('content-type: image/png'); 
echo file_get_contents($imgurl);
?>