亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

php語(yǔ)言

PHP下載保存文件保存到本地的方法

時(shí)間:2023-03-02 16:18:44 php語(yǔ)言 我要投稿
  • 相關(guān)推薦

PHP下載保存文件保存到本地的方法

  PHP原始為Personal Home Page的縮寫,已經(jīng)正式更名為 "PHP: Hypertext Preprocessor"。注意不是“Hypertext Preprocessor”的縮寫,這種將名稱放到定義中的寫法被稱作遞歸縮寫,以下是小編為大家搜索整理的PHP下載保存文件保存到本地的方法,歡迎大家閱讀!更多精彩內(nèi)容請(qǐng)及時(shí)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!

  第一種:

  function downfile()

  {

  $filename=realpath("resume.html"); //文件名

  $date=date("Ymd-H:i:m");

  Header( "Content-type: application/octet-stream ");

  Header( "Accept-Ranges: bytes ");

  Header( "Accept-Length: " .filesize($filename));

  header( "Content-Disposition: attachment; filename= {$date}.doc");

  echo file_get_contents($filename);

  readfile($filename);

  }

  downfile();

  ?>

  或

  ?

  function downfile($fileurl)

  {

  ob_start();

  $filename=$fileurl;

  $date=date("Ymd-H:i:m");

  header( "Content-type: application/octet-stream ");

  header( "Accept-Ranges: bytes ");

  header( "Content-Disposition: attachment; filename= {$date}.doc");

  $size=readfile($filename);

  header( "Accept-Length: " .$size);

  }

  $url="url地址";

  downfile($url);

  ?>

  第二種:

  function downfile($fileurl)

  {

  $filename=$fileurl;

  $file = fopen($filename, "rb");

  Header( "Content-type: application/octet-stream ");

  Header( "Accept-Ranges: bytes ");

  Header( "Content-Disposition: attachment; filename= 4.doc");

  $contents = "";

  while (!feof($file)) {

  $contents .= fread($file, 8192);

  }

  echo $contents;

  fclose($file);

  }

  $url="url地址";

  downfile($url);

  ?>

  PHP實(shí)現(xiàn)下載文件的兩種方法。分享下,有用到的朋友看看哦。

  方法一:

  ?

  /**

  * 下載文件

  * header函數(shù)

  *

  */

  header('Content-Description: File Transfer');

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

  header('Content-Disposition: attachment; filename='.basename($filepath));

  header('Content-Transfer-Encoding: binary');

  header('Expires: 0′);

  header('Cache-Control: must-revalidate, post-check=0, pre-check=0′);

  header('Pragma: public');

  header('Content-Length: ' . filesize($filepath));

  readfile($file_path);

  ?>

  了解php中header函數(shù)的用法。

  方法二:

  ?

  //文件下載

  //readfile

  $fileinfo = pathinfo($filename);

  header('Content-type: application/x-'.$fileinfo['extension']);

  header('Content-Disposition: attachment; filename='.$fileinfo['basename']);

  header('Content-Length: '.filesize($filename));

  readfile($thefile);

  exit();

  ?>


更多相關(guān)文章推薦:

1.在PHP中使用RSS技術(shù)的方法

2.php生成縮略圖的兩種方法

3.解決PHP的failed opening required問(wèn)題的方法

4.PHP頁(yè)面漏洞分析的方法

5.判斷數(shù)組是否為空的'五大方法

6.php采用ajax數(shù)據(jù)提交post與post常見方法總結(jié)

7.攻擊方法注射語(yǔ)句構(gòu)造php+mysql

8.有關(guān)phpmailer的詳細(xì)介紹及使用方法

9.PHP插入數(shù)據(jù)庫(kù)的方法

10.Python中子類怎樣調(diào)用父類方法

【PHP下載保存文件保存到本地的方法】相關(guān)文章:

PHP中讀取大文件實(shí)現(xiàn)方法詳解11-30

PHP文件怎么操作11-26

php是什么文件03-30

PHP常用的文件操作函數(shù)11-26

PHP獲取遠(yuǎn)程文件大小的3種解決方法03-30

php下載代碼怎么寫11-18

深入理解PHP的.htaccess文件11-27

自學(xué)PHP方法12-04

PHP實(shí)現(xiàn)大文件上傳源代碼11-23

用PHP遍歷目錄下的全部文件02-11