• 关于让浏览器默认弹出下载而不用直接在浏览器打开的封装方


    其实就是将你的的文件,通过二进制的方法,转成流文件让浏览器识别,或者替换头部信息的方式

        function downFileFromServer($showFileName, $downFilePath)    {        if(file_exists($downFilePath))        {            if(is_readable($downFilePath))            {                if(Trim($showFileName) == '')                {                 $showFileName = 'undefined';                }                ob_start();                ob_clean();                $file_size = filesize($downFilePath);                header('Content-Encoding:none');                header('Cache-Control:private');                header('Content-Length:' . $file_size);                header('Content-Disposition:attachment; filename=' . $showFileName);                header('Content-Type:application/octet-stream');                readfile($downFilePath);                ob_flush();            }        }    }    //Sample     downFileFromServer($fileurl, 真实文件地址);

  • 相关阅读:
    Java基础知识➣面向对象(八)
    Linux(CentOS7)安装Tomcat
    Java基础知识➣发送Emai和访问MySQL数据库(七)
    Java基础知识➣网络Socket(六)
    JS 的点点滴滴
    git 快速入门(二)
    zxing 生成二维码
    js生成二维码
    Markdown简介
    java常用string inputStream转换
  • 原文地址:https://www.cnblogs.com/kakaxi/p/1967763.html
Copyright © 2020-2023  润新知