我有一个存储在
中的JPG图像 /app/storage/foobar.jpg
我想表明:
/public/foobar.php
JPG没有存储在公共存储库中,所以我必须做一些与<img src="/images/foobar.jpg">
不同的事情。
我有什么:`
$path = '/app/storage/foobar.jpg'; // or something equal, lets say this returns the correct JPG
$_mime = 'image/jpeg';
$headers = [
'Content-Type' => $_mime,
'Content-Transfer-Encoding' => 'binary',
'Content-Disposition' => 'inline; filename="foobar"',
'Expires' => 0,
'Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
'Pragma' => 'public',
'Content-Length' => filesize($path),
];
然后呢?现在我有标题