php或html網頁怎麼做是下載檔案,怎麼做是開啟檔案?

來源:互聯網
上載者:User
關鍵字 php
php或html網頁,上面有個檔案連結,點擊它的時候,怎麼樣做是讓這個檔案開啟,怎麼樣做是讓它下載?就是出現那個下載對話方塊。

回複內容:

php或html網頁,上面有個檔案連結,點擊它的時候,怎麼樣做是讓這個檔案開啟,怎麼樣做是讓它下載?就是出現那個下載對話方塊。

這樣是進行檔案的下載:

function downloadfile($filename,$storage) {    if(! is_file($storage)) exit('檔案不存在!');    if(!$fp = fopen($storage, 'r')) exit('error');    header('Content-Type: application/octet-stream;charset=utf-8');    if(preg_match("/Trident/", $_SERVER["HTTP_USER_AGENT"])) {        header('Content-Disposition: attachment; filename="'.utf8togbk($filename).'"');    } else {        header('Content-Disposition: attachment; filename="'.$filename.'"');    }    header('Content-Transfer-Encoding: binary');    while(! feof($fp)){        echo fread($fp,1025);    }    fclose($fp);}

開啟檔案應該是瀏覽器的行為吧?

通過php的header()方法,來修改html頭部內容,來達到目的

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.