<i id='6CszU'><tr id='6CszU'><dt id='6CszU'><q id='6CszU'><span id='6CszU'><b id='6CszU'><form id='6CszU'><ins id='6CszU'></ins><ul id='6CszU'></ul><sub id='6CszU'></sub></form><legend id='6CszU'></legend><bdo id='6CszU'><pre id='6CszU'><center id='6CszU'></center></pre></bdo></b><th id='6CszU'></th></span></q></dt></tr></i><div id='6CszU'><tfoot id='6CszU'></tfoot><dl id='6CszU'><fieldset id='6CszU'></fieldset></dl></div>
    <bdo id='6CszU'></bdo><ul id='6CszU'></ul>
    1. <small id='6CszU'></small><noframes id='6CszU'>

        <legend id='6CszU'><style id='6CszU'><dir id='6CszU'><q id='6CszU'></q></dir></style></legend>

        <tfoot id='6CszU'></tfoot>

        如何在 PHP 中自动开始下载?

        时间:2023-10-02

          <tbody id='oYwzs'></tbody>
      1. <tfoot id='oYwzs'></tfoot>
      2. <small id='oYwzs'></small><noframes id='oYwzs'>

          <bdo id='oYwzs'></bdo><ul id='oYwzs'></ul>

                <legend id='oYwzs'><style id='oYwzs'><dir id='oYwzs'><q id='oYwzs'></q></dir></style></legend>

                  <i id='oYwzs'><tr id='oYwzs'><dt id='oYwzs'><q id='oYwzs'><span id='oYwzs'><b id='oYwzs'><form id='oYwzs'><ins id='oYwzs'></ins><ul id='oYwzs'></ul><sub id='oYwzs'></sub></form><legend id='oYwzs'></legend><bdo id='oYwzs'><pre id='oYwzs'><center id='oYwzs'></center></pre></bdo></b><th id='oYwzs'></th></span></q></dt></tr></i><div id='oYwzs'><tfoot id='oYwzs'></tfoot><dl id='oYwzs'><fieldset id='oYwzs'></fieldset></dl></div>
                  本文介绍了如何在 PHP 中自动开始下载?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  需要在 PHP 中添加什么代码才能在访问链接时自动让浏览器将文件下载到本地机器?

                  What code do you need to add in PHP to automatically have the browser download a file to the local machine when a link is visited?

                  我特别想到了类似于下载站点的功能,一旦您单击软件名称,就会提示用户将文件保存到磁盘?

                  I am specifically thinking of functionality similar to that of download sites that prompt the user to save a file to disk once you click on the name of the software?

                  推荐答案

                  在输出文件前发送以下标题:

                  Send the following headers before outputting the file:

                  header("Content-Disposition: attachment; filename="" . basename($File) . """);
                  header("Content-Type: application/octet-stream");
                  header("Content-Length: " . filesize($File));
                  header("Connection: close");
                  

                  @grom:关于application/octet-stream"MIME 类型很有趣.我不知道,一直只使用应用程序/强制下载":)

                  @grom: Interesting about the 'application/octet-stream' MIME type. I wasn't aware of that, have always just used 'application/force-download' :)

                  这篇关于如何在 PHP 中自动开始下载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在 MySQL 中找不到 outfile 创建的文件 下一篇:是否有相当于 Perl 的 WWW::Mechanize 的 PHP?

                  相关文章

                  最新文章

                    <small id='Zl3DI'></small><noframes id='Zl3DI'>

                      <bdo id='Zl3DI'></bdo><ul id='Zl3DI'></ul>
                    <i id='Zl3DI'><tr id='Zl3DI'><dt id='Zl3DI'><q id='Zl3DI'><span id='Zl3DI'><b id='Zl3DI'><form id='Zl3DI'><ins id='Zl3DI'></ins><ul id='Zl3DI'></ul><sub id='Zl3DI'></sub></form><legend id='Zl3DI'></legend><bdo id='Zl3DI'><pre id='Zl3DI'><center id='Zl3DI'></center></pre></bdo></b><th id='Zl3DI'></th></span></q></dt></tr></i><div id='Zl3DI'><tfoot id='Zl3DI'></tfoot><dl id='Zl3DI'><fieldset id='Zl3DI'></fieldset></dl></div>
                  1. <legend id='Zl3DI'><style id='Zl3DI'><dir id='Zl3DI'><q id='Zl3DI'></q></dir></style></legend>

                  2. <tfoot id='Zl3DI'></tfoot>