doutan2456 2015-07-07 01:00
浏览 231
已采纳

通过PHP下载PDF不会在手机上打开

Generating a PDF from wkhtmltopdf working great on desktop. I have a two-step process to generate the file and then download the file. The file generated opens just fine on my mobile device (when I e-mail it) but using a PHP script, I am unable to open after download.

In other words, it's not the PDF, it's the PHP download that's causing problems. The file downloads with the appropriate name, but won't open in mobile.

Galaxy S5 w/ Chrome (up-to-date).

The download is started with javascript:

window.location = 'savePDF.php?file=' + filename + '&fileName=' + nameString;

And here's the PHP script:

<?php
$file = $_GET['file'];

header('Pragma: public',true);
header('Expires: 0');
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/octet-stream");
header('Content-Disposition: attachment; filename="'.$_GET['fileName'].'.pdf"');
header("Content-Transfer-Encoding: binary");
header('Content-Length: ' . filesize($file));
readfile($file);
unlink($file);
?>

EDIT: unlink($file) added to code to show that aspect.

  • 写回答

1条回答 默认 最新

  • duanhuangyun3887 2015-07-07 20:34
    关注

    Figured it out. Thanks to everyone for helping me debug (on mobile without dev tools it is a pain).

    I was unlink($file); right after readfile($file) and for some reason on mobile (when it was asking what I wanted to do with the file before downloading) it was deleting the temporary file before reading the entire contents. Instead, I added:

    exec("php cleantmp.php $tmpfile > NUL &");
    

    and created cleantmp.php:

    <?php
    if (php_sapi_name() == 'cli') {
        sleep(10);
    
        unlink($argv[1]);
    }
    ?>
    

    Which now runs in the background and deletes the temp files after 10 seconds.

    Thanks again for your help CBroe

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀