前端之家收集整理的这篇文章主要介绍了
在php文件中返回图像的内容?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
查看
readfile().
基本思想是发送适当的MIME类型头(使用header()),然后使用readfile()传递文件内容.
例如
<?PHP
// myhumbleimage.PHP
// Do whatever myhumbleimage.PHP does before the image is delivered
header('Content-Type: image/jpeg');
readfile('path/or/url/of/image/file.jpg');
exit;
原文链接:https://www.f2er.com/php/135473.html