php 下載保存文件保存到本地的兩種實現(xiàn)方法
更新時間:2013年08月12日 09:45:27 投稿:jingxian
以下是對php下載保存文件保存到本地的兩種實現(xiàn)方法進行了介紹,需要的朋友可以過來參考下
第一種:
<?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");
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);
?>
第二種:
<?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實現(xiàn)下載文件的兩種方法。分享下,有用到的朋友看看哦。
方法一:
<?php
/**
* 下載文件
* 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ù)的用法。
方法二:
<?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();
?>
相關(guān)文章
PHP實現(xiàn)廣度優(yōu)先搜索算法(BFS,Broad First Search)詳解
這篇文章主要介紹了PHP實現(xiàn)廣度優(yōu)先搜索算法(BFS,Broad First Search),簡單描述了廣度優(yōu)先搜索算法的原理并結(jié)合具體實例分析了php實現(xiàn)廣度優(yōu)先搜索算法的步驟與相關(guān)操作技巧,需要的朋友可以參考下2017-09-09
PHP開發(fā)中常用的三個表單驗證函數(shù)使用小結(jié)
PHP Web開發(fā)中常用的三個表單驗證函數(shù),這些都是一些經(jīng)常用到的判斷函數(shù)。2010-03-03
php設(shè)計模式 Prototype (原型模式)代碼
用原型實例指定創(chuàng)建對象的種類.并且通過拷貝這個原型來創(chuàng)建新的對象2011-06-06

