在php文件中返回图像的内容?

前端之家收集整理的这篇文章主要介绍了在php文件中返回图像的内容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我真的不知道任何 PHP,但我喜欢做一件简单的事情:
我从< img src =“/ myhumbleimage.PHP”/>中访问一个PHP页面.我想从另一个URL返回一个图像.

我提出了:

<?PHP
header('Content-Type: image/png');
readfile('i' . rand(1,3) . '.png');
exit;

它有效:
Avatar selection http://vercas.webuda.com/img.php?.png
(重新加载页面几次!)

查看 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

猜你在找的PHP相关文章