Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 $image 的 php 变量,它保存来自 mySQL 服务器的中等 blob 的内容,我正在尝试使用 PHP5 输出它。
当我只使用代码时:
echo $image;
它只是输出一个充满 ASCII 字符的页面。有没有人有什么建议?谢谢
指定正确的Content-Type标题。
Content-Type
header('Content-Type: image/png'); echo $image;