Is there any way to resume a broken download via an ftp connction established with php? Can php resume a broken download?
|
feedback
|
|
Yes, it can, using the optional $resumepos parameter of the ftp_fget() function. Example:
You could use the ftp_size() function to see if a file needs to be resumed or not, but it is not supported on all FTP servers so you'd have to check for that. | |||
|
feedback
|