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

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

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?