drgbpq5930 2016-08-07 22:19
浏览 152
已采纳

如何在标头中传递多个文件扩展名参数?

I have files of different extensions, So how can I define multiple extensions in one header. for example

 header("Content-type: application/xml"); 
 header("Content-type: application/txt");

Is there any possibilities are there, to define in a single header something like this

 header("Content-type: application/xml txt"); 

Thanks in advance for your suggestions

  • 写回答

1条回答 默认 最新

  • douweiluo0600 2016-08-07 22:37
    关注

    If you want in downloading any type of file you can just use application/octet-stream.

    header('Content-Type: application/octet-stream');
    

    // for example this will download any type of file

     header('Content-Description: File Transfer');
     header('Content-Type: application/octet-stream');
     header('Content-Disposition: attachment; filename="' . basename($file) . '"');
     header('Expires: 0');
     header('Cache-Control: must-revalidate');
     header('Pragma: public');
     header('Content-Length: ' . filesize($file));
     readfile($file);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 Unet采样阶段的res_samples问题
  • ¥60 Python+pygame坦克大战游戏开发实验报告
  • ¥15 R语言regionNames()和demomap()无法选中中文地区的问题
  • ¥15 Open GL ES 的使用
  • ¥15 我如果只想表示节点的结构信息,使用GCN方法不进行训练可以吗
  • ¥15 QT6将音频采样数据转PCM
  • ¥15 下面三个文件分别是OFDM波形的数据,我的思路公式和我写的成像算法代码,有没有人能帮我改一改,如何解决?
  • ¥15 Ubuntu打开gazebo模型调不出来,如何解决?
  • ¥100 有chang请一位会arm和dsp的朋友解读一个工程
  • ¥15 查询优化:A表100000行,B表2000 行,内存页大小只有20页,运行时3页,设计两个表等值连接的最简单的算法