I would like to know if there is a way, using PHP, to archive some files in a ZIP on the FTP server (not the PHP server) then proceed with the ftp_get()
.
So far I can:
ftp_get
a single fileWhat I need is really to archive on FTP server then proceed with the ftp_get
.
Any idea ? thanks
There's no API in the FTP protocol to ZIP files on a server.
So unless you have another access interface (like an SSH shell access), you cannot do this.