• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP大文件及断点续传下载实现代码

php 搞代码 4年前 (2022-01-01) 41次浏览 已收录 0个评论

这篇文章主要介绍了PHP大来源[email protected]搞@^&代*@码网文件及断点续传下载实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

一般来说浏览器要同时下载几个文件,比如pdf文件,会在服务器端把几个文件压缩成一个文件。但是导致的问题就是会消耗服务器的cpu和io资源。

那有没有办法,用户点了几个文件,在客户端同时下载呢? 支持html5的浏览器是可以的,html的a标签有一个属性download

单个文件下载, 经过测试在edge浏览器,firefox和chrome都支持。但是遗憾的是ie浏览器不支持。参考下面的例子。

   <title></title>  ie浏览器怎么办呢? 也可以用window.open函数。   <title></title> 单个文件下载<br>下载全部文件

完整的方案就是根据浏览器类型,调用不同的函数,实现。

另外要下载pdf,而不是在浏览器中打开的话,需要配置apache的配置文件,在httpd.conf中增加下面的配置。

Header set Content-Disposition attachment

或者使用down2组件,下载更简单。

JavaScript:

引入头

  <title>donw2-多文件演示页面</title>

创建down2对象

 var downer = new DownloaderMgr(); downer.Config["Folder"] = ""; //设置默认下载路径。 //挂载事件 downer.event.taskCreate = function(obj) { $(document.body).append("文件ID:" + obj .fileSvr.id) + "<br />"; }; downer.event.downProcess = function(obj) {}; downer.event.downStoped = function(obj) {}; downer.event.downComplete = function( obj) { $(document.body).append('<div>本地路径:' + obj.fileSvr.pathLoc + '</div>'); }; downer.event.downError = function(obj, err) {}; downer.event.queueComplete = function() { $(document.body).append( "<div>队列完成</div>"); };

批量下载url

 $("#btn-down-files").click(function() { if (downer.Config["Folder"] == "") { downer.open_folder(); return; } var urls = [ { fileUrl: "http://res2.ncmem.com/res/images/ie11.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/up6.1/down.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/firefox.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/edge.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/up6.1/cloud.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/home/w.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/img.png-600" } ]; downer.app.addUrls(urls); });

当成一个文件夹下载

 $("#btn-down-json").click(function() { if (downer.Config["Folder"] == "") { downer.open_folder(); return; } var fd = { nameLoc: "图片列表" , files: [ { fileUrl: "http://res2.ncmem.com/res/images/ie11.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/up6.1/down.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/firefox.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/edge.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/up6.1/cloud.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/home/w.png-600" } , { fileUrl: "http://res2.ncmem.com/res/images/img.png-600" } ] }; downer.app.addJson(fd); });

下载多级目录

 $("#btn-down-fd").click(function() { if (downer.Config["Folder"] == "") { downer.open_folder(); return; } var fd = { nameLoc: "测试文件夹" , files: [ { fileUrl: "http://www.ncmem.com/images/ico-ftp.jpg-600" } , { fileUrl: "http://www.ncmem.com/images/ico-up.jpg-600" } ] , folders: [ { nameLoc: "图片1" , files: [ { fileUrl: "http://www.ncmem.com/images/ico-ftp.jpg-600" } , { fileUrl: "http://www.ncmem.com/images/ico-up.jpg-600" } , { fileUrl: "http://www.ncmem.com/images/ico-capture.jpg-600" } , { fileUrl: "http://www.ncmem.com/images/ico-imageuploader.gif" } , { fileUrl: "http://www.ncmem.com/images/ico-wordpaster.gif" } ] , folders: [ { nameLoc: "软件" , files: [ { fileUrl: "http://res2.ncmem.com/res/images/edit-file.png-600" } ] } ] } ] }; downer.app.addJson(fd); });

自定义下载文件名称

 $("#btn-down-svr").click(function () { if (downer.Config["Folder"] == "") { downer.open_folder(); return; } var urls = [ { fileUrl: "http://localhost:90/db/down.aspx", nameLoc: "test.exe" } , { fileUrl: "http://localhost:90/db/down.aspx", nameLoc: "test-1.exe" } ]; downer.app.addUrls(urls); });

实现

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持gaodaima搞代码网

以上就是PHP大文件及断点续传下载实现代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP大文件及断点续传下载实现代码

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址