0

我正在编写一个 PHP 程序,它将从文件系统获取图像并将其显示在返回的页面上。问题是该文件未存储在 /var/www 目录中。它存储在 /var/site/images 中。我怎样才能做到这一点?我是否必须用 fopen 将其读入内存,然后回显内容?

4

1 回答 1

5

用于fpassthru将内容从文件系统转储到输出流。事实上,文档fpassthru包含您正在尝试做的演示:http: //us3.php.net/fpassthru

<?php

// open the file in a binary mode
$name = './img/ok.png';
$fp = fopen($name, 'rb');

// send the right headers
// - adjust Content-Type as needed (read last 4 chars of file name)
// -- image/jpeg - jpg
// -- image/png - png
// -- etc.
header("Content-Type: image/png");
header("Content-Length: " . filesize($name));

// dump the picture and stop the script
fpassthru($fp);
fclose($fp);
exit;

?>
于 2012-11-26T02:21:14.163 回答