Edit
by Manoj Kamboj - 9 years ago (2015-04-30)
i want to write code in php to download any type of files
| i want to make a website page in php to download any type of files. |
- 1 Clarification request
1.
by Anichandran Ayysamy Ayyanallur - 7 years ago (2017-08-23) Reply
Ask clarification
3 Recommendations
Bf_Download: Serve files for download with resume support
This class can be used to serve files for download.
It can hide the original file path on the server, serve files partially, resume partial downloads, serve files with a different name and limit the download data transfer rate.
| by zinsou A.A.E.Moïse 6835 - 7 years ago (2017-08-11) Comment
this is a good one...For new requesters... |
This class can download and output remote files.
It can send a HTTP request to a remote Web server to retrieve a file with a given URL.
The class can retrieve parts of the content of the files according to the request ranged specified by the current HTTP request Range header.
The class can output the contents of the file.
| by Anthony Amolochitis package author 505 - 9 years ago (2015-05-18) Comment
This is a super easy to use download class. It will allow you to put files in a folder not accessible via the web, and download it still. I hope this helps. |
HTTP Download: Server files for downloading with resume support
This class can be used to dynamically serve data from files for download.
It can handle HTTP requests that ask to resume the download of files that were partially downloaded previously. So, it supports any download manager program that the users may employ.
It can serve data from files available on the serve or from dynamically generated data strings.
It can also handle user download abort requests so the download process stops immediately.
The class also supports custom user defined callback functions to handle all steps of the file download process, so it can be customized for special purposes.
You can also tracking user's download bandwidth for this download ( remeber to disable autoexit to use this option )
| by Dave Smith 7620 - 9 years ago (2015-05-03) Comment
This is the highest rated class here. It can handle files as well as dynamically generated files, resume downloads and some limited user tracking. |