从私人文件夹到公共文件夹的Php Stream图像

时间:2015-04-03 15:13:52

标签: php

我有一个存储在

中的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),
        ];  

然后呢?现在我有标题

0 个答案:

没有答案