亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何實現保存下載文件

發布時間:2021-07-14 09:54:03 來源:億速云 閱讀:282 作者:chen 欄目:編程語言

這篇文章主要介紹“php如何實現保存下載文件”,在日常操作中,相信很多人在php如何實現保存下載文件問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php如何實現保存下載文件”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

php實現保存下載文件的方法:1、通過“function downfile(){...}”方法實現下載文件;2、通過header函數實現保存下載。

本文操作環境:windows7系統、PHP7.1版,DELL G3電腦

php 下載保存文件保存到本地的兩種實現方法

這里的下載,指的是 彈出下載提示框。

第一種:

<?php 
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();
?>

或 (推薦這種方法,親測可行,其他的沒測試)

<?php 
function downfile($fileurl)
{
 ob_start(); 
 $filename=$fileurl;
 $date=date("Ymd-H:i:m");
 $size=readfile($filename);
 header( "Content-type:  application/octet-stream "); 
 header( "Accept-Ranges:  bytes "); 
 header( "Content-Disposition:  attachment;  filename= {$date}.doc"); 
 header( "Accept-Length: " .$size);
}
 $url="url地址";
 downfile($url);
?>

第二種:

<?php 
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實現下載文件的兩種方法。分享下,有用到的朋友看看哦。

方法一:

<?php
/**
* 下載文件
* header函數
*
*/
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函數的用法。

方法二:

<?php
//文件下載
//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();
?>

到此,關于“php如何實現保存下載文件”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

宕昌县| 夏河县| 庆城县| 射阳县| 新河县| 沁水县| 宜章县| 驻马店市| 同德县| 津南区| 桃园县| 泰宁县| 靖江市| 邮箱| 章丘市| 宁远县| 宁城县| 普兰店市| 孟津县| 雷州市| 石城县| 新巴尔虎左旗| 利辛县| 德安县| 玉树县| 兴和县| 望奎县| 龙海市| 阜阳市| 上高县| 恭城| 隆子县| 阿合奇县| 海盐县| 乐平市| 抚州市| 房山区| 古田县| 土默特右旗| 仁怀市| 香河县|