- 相關(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)文章推薦:
3.解決PHP的failed opening required問(wèn)題的方法
6.php采用ajax數(shù)據(jù)提交post與post常見方法總結(jié)
7.攻擊方法注射語(yǔ)句構(gòu)造php+mysql
8.有關(guān)phpmailer的詳細(xì)介紹及使用方法
【PHP下載保存文件保存到本地的方法】相關(guān)文章:
PHP中讀取大文件實(shí)現(xiàn)方法詳解11-30
PHP文件怎么操作11-26
php是什么文件03-30
PHP常用的文件操作函數(shù)11-26
php下載代碼怎么寫11-18
深入理解PHP的.htaccess文件11-27
自學(xué)PHP方法12-04
用PHP遍歷目錄下的全部文件02-11