美文网首页
文件下载

文件下载

作者: 大菜鸟呀 | 来源:发表于2018-08-20 21:17 被阅读0次

    常见的文件格式:

    <?php
    header('content-type:application/octet-stream');
    1、常见图片类型:
    image/gif、 image/png、 image/jpeg、 image/jpg 
    
    2、纯文本和html
    text/plain、 text/html
    
    3、二进制文件
    application/octet-stream
    
    4、音频格式
    audio/mpeg
    
    5、视频格式
    video/avi
    video/x-ms-wmv
    ?>
    

    文件下载HTML

    <body>
        <a href="download.php?file=l1.jpg ">下载</a>
    </body>
    

    图片文件下载PHP

    <?php
    $file=$_GET['file'];
    
    $downfile=$file;
    
    $filesize=filesize($downfile);
    
    
    header('content-type:application/octet-stream');//二进制流文件
    
    header("content-disposition:attachment;filename={$file}");//附件包
    
    header("content-length:{$filesize}");
    
    readfile($downfile);
    
    ?>
    

    相关文章

      网友评论

          本文标题:文件下载

          本文链接:https://www.haomeiwen.com/subject/evlriftx.html