程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP下載文件的兩種方法與代碼分享

PHP下載文件的兩種方法與代碼分享

編輯:關於PHP編程

方法一:

<?
('Content-Description: File Transfer'('Content-Type: application/octet-stream'('Content-Disposition: attachment; filename='.(('Content-Transfer-Encoding: binary'(''Cache-Control: must-revalidate, post-check=0, pre-check=0('Pragma: public'('Content-Length: ' . ((?>

以上代碼用到了php header函數,可以參考以下如下的文章:
php header()函數的簡單例子
php header函數實現文件下載的實例代碼
php中header函數的用法舉例詳解
php header 使用詳解
php header函數 文件下載時直接提示保存的代碼
php header函數實現文本文件下載的方法
php 文件頭部(header)信息詳解
php使用header發送各種類型文件下載的例子

了解php中header函數的用法。

方法二:

<?
 = (('Content-type: application/x-'.['extension'('Content-Disposition: attachment; filename='.['basename'('Content-Length: '.((?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved