I want to extract a zip file which is on another server. Is it possible using FTP credentials?
$dest = 'abc.zip';
$source = 'abc.zip';
$ftp = ftp_connect("ftp.example.com");
ftp_login($ftp, "username", "password");
ftp_put($ftp, $dest, $source, FTP_BINARY);
ftp_close($ftp);