0

我正在做一个有文件上传的项目。这些文件被赋予一个随机名称并放置在 web 目录之外。

然后我有一个脚本,它可以根据 URL 中传递的参数来检索这个图像,它工作得很好。

但是,我制作了一组我想传递给浏览器的标题,然后用循环遍历这些标题foreach,它们似乎没有设置任何东西。但是,如果我使用它们工作的功能手动设置它们header!奇怪!

现在,我不介意使用该header函数而不是遍历它们,但是,是否有特定原因导致这不起作用?

我还使用上述方法将所有标头存储在一个数组中,然后在将内容传递到浏览器时对其进行处理,但是,我不能确定它们是否真的被传递,看到上述问题!

我的代码片段:

// Expiry date in seconds, in this instance a year
$expiry_date=   ( 60 * 60 * 24 * 365 );
// Our headers
$img_headers=   array(
    'Content-Type : ' . $mime,
    'Cache-Control: no-cache, must-revalidate',
    //'Cache-control: max-age=' . $expiry_date,
    'Expires:' . gmdate( DATE_RFC1123, time() + $expiry_date ),
    'Pragma: ',
    'Last-Modified: ' . gmdate( gmdate( DATE_RFC1123 ), filemtime( $image_path ) ),
    'Content-Length: ' . ( string ) filesize( $image_path ),
    'Content-Disposition: inline; filename="' . $image_name . '"'
);            

/*header( 'Content-Type: ' . $mime, TRUE );
header( 'Cache-Control: no-cache, must-revalidate', TRUE );
header( 'Expires: ' . gmdate( DATE_RFC1123, time() + $expiry_date ) );
header( 'Pragma: ', TRUE );
header( 'Last-Modified: ' . gmdate( gmdate( DATE_RFC1123 ), filemtime( $image_path ) ), TRUE );
header( 'Content-Length: ' . ( string ) filesize( $image_path ), TRUE );*/

// Loop through and set up our headers!
foreach( $img_headers as $new_header )
{
    header( $new_header, TRUE );
}

// Read our image and end the rest of the file execution
return die( readfile( $image_path ) );

有什么看起来不合时宜的吗?

提前致谢!

4

2 回答 2

1

这两种方法应该是相同的。也许“内容类型:”中的额外空间导致了问题?

于 2012-04-15T01:37:01.267 回答
0

尝试用以下内容替换你的 foreach 循环,一旦空白导致逻辑错误,我遇到了类似的问题,值得一试。

foreach( $img_headers as $new_header )
{
    header( trim($new_header), TRUE );
}
于 2012-04-15T01:32:57.947 回答