0

我想从浏览器的新窗口下载图像。意味着当我单击图像时,它应该出现在新窗口中,并且有下载它的按钮。

到目前为止,我可以通过单击而不是在新窗口中打开来下载它,这意味着当我单击图像时,浏览器弹出窗口会生成打开或保存图像。但我想先在新窗口中打开图片下载按钮下载。

这是我正在使用的代码。

<?php
if(isset($_GET['file'])){
    //Please give the Path like this
    $file = $_GET['file'];

    if (file_exists($file)) {
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.basename($file));
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header('Pragma: public');
        header('Content-Length: ' . filesize($file));
        ob_clean();
        flush();
        readfile($file);
        exit;
    }
}
?>
4

0 回答 0