vote up 0 vote down star

I'm trying to write a script that allows an admin of a photo uploading system download all their photos at once. Currently I am using

system('zip -r '.$_SERVER['DOCUMENT_ROOT'].'/zip.zip '.$_SERVER['DOCUMENT_ROOT'].'/images/photo-uploads';

to zip the files but this seems to echo names and locations all the files onto the page. Is there anyway to get around this? If not what is the best way to zip files on server.

flag

80% accept rate

3 Answers

vote up 1 vote down check

You might use exec('zip -r '.$_SERVER['DOCUMENT_ROOT'].'/zip.zip '.$_SERVER['DOCUMENT_ROOT'].'/images/photo-uploads'); instead.

link|flag
This way you can also check the results of the system call. – notJim Nov 9 at 1:21
vote up 0 vote down

You can also use output buffering:

ob_start();
system('zip -r '.$_SERVER['DOCUMENT_ROOT'].'/zip.zip '.$_SERVER['DOCUMENT_ROOT'].'/images/photo-uploads';
ob_end_clean();

This will stop any output from being shown from the system command.

link|flag
That is great to do if you need to use the output of the system call somehow, but it this case it sounds like he wants to suppress it. – Myles Nov 9 at 0:56
vote up 2 vote down

You can use ZipArchive extension instead (if you are allowed to) of calling system zip like that, because it makes your code non-portable.

link|flag
1  
Using ZipArchive is the best solution if at all possible, IMO. – notJim Nov 9 at 1:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.