How do I force files to open in the browser instead of downloading (PDF)?

后端 未结 13 1270
别跟我提以往
别跟我提以往 2020-11-22 04:15

Is there a way to force PDF files to open in the browser when the option \"Display PDF in browser\" is unchecked?

I tried using the embed tag and an iframe, but it o

13条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 04:54

    Here is another method of forcing a file to view in the browser in PHP:

    $extension = pathinfo($file_name, PATHINFO_EXTENSION);
    $url = 'uploads/'.$file_name;
            echo ''
                    .header('Content-Type: application/'.$extension).'
    ' .header('Content-Disposition: inline; filename="'.$file_name.'"').'
    ' .'' .' ' .'' . '';

提交回复
热议问题