adding remote files to a zip file
Posted
by Borgtex
on Stack Overflow
See other posts from Stack Overflow
or by Borgtex
Published on 2010-06-02T08:51:54Z
Indexed on
2010/06/02
8:53 UTC
Read the original article
Hit count: 121
Is there a way to add files to a zip file from another server with php's zip extension? ie. addFile(array('localfile.txt,'http://www.domain.com/remotefile.txt')) (that obviously does not work)
I suppose I can download the files to a temporal folder and then add them to the zip file, but I was looking for a more automated solution or a function already made
© Stack Overflow or respective owner