php 下载保存文件保存到本地的两种实现方法

2015-01-24信息快讯网

以下是对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");
 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实现下载文件的两种方法。分享下,有用到的朋友看看哦。

方法一:

<?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 zip扩展Linux下安装过程分享
PHP常用的缓存技术汇总
php加速器eAccelerator的配置参数、API详解
使用pthreads实现真正的PHP多线程(需PHP5.3以上版本)
PHP FATAL ERROR: CALL TO UNDEFINED FUNCTION BCMUL()解决办法
PHP按行读取文件时删除换行符的3种方法
Linux中用PHP判断程序运行状态的2个方法
PHP CURL获取返回值的方法
PHP判断远程图片是否存在的几种方法
PHP错误WARNING: SESSION_START() [FUNCTION.SESSION-START]解决方法
php环境无法上传文件的解决方法
php中使用getimagesize获取图片、flash等文件的尺寸信息实例
PHP include任意文件或URL介绍
php检测文件编码的方法示例
php导出csv数据在浏览器中输出提供下载或保存到文件的示例
利用php下载xls文件(自己动手写的)
php实现批量下载百度云盘文件例子分享
php实现文件下载简单示例(代码实现文件下载)
php多文件上传下载示例分享
完美解决PHP中的Cannot modify header information 问题
CodeIgniter上传图片成功的全部过程分享
php实现MD5加密16位(不要默认的32位)
php中的Base62类(适用于数值转字符串)
PHP实现把数字ID转字母ID
PHP计算2点经纬度之间的距离代码
php读取csv文件后,uft8 bom导致在页面上显示出现问题的解决方法
php 删除目录下N分钟前创建的所有文件的实现代码
php一些错误处理的方法与技巧总结
php对csv文件的读取,写入,输出下载操作详解
分割GBK中文遭遇乱码的解决方法
利用php+mcDropdown实现文件路径可在下拉框选择
PHP生成验证码时“图像因其本身有错无法显示”的解决方法
浅析php fwrite写入txt文件的时候用 \r\n不能换行的问题
php实现统计邮件大小的方法
解析PHP实现下载文件的两种方法
解析获取优酷视频真实下载地址的PHP源代码
解析php下载远程图片函数 可伪造来路
解析php多线程下载远程多个文件
©2014-2024 dbsqp.com