Unzip File

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
GinsBabu
Forum Newbie
Posts: 8
Joined: Sat Oct 24, 2009 7:00 am

Unzip File

Post by GinsBabu »

Hi,

I have a zip in remote machine.The zip contains some images.The path to the zip file is given as http://www.example.com/image.zip.How can i extract the zip file to the server?currently am doing this with the ziparchieve function.But it takes too much time.so is there any other way to reduce the processing time.Any help would be grateful.I want to do this in zend.is there any library available for zend to do this....:)
User avatar
markusn00b
Forum Contributor
Posts: 298
Joined: Sat Oct 20, 2007 2:16 pm
Location: York, England

Re: Unzip File

Post by markusn00b »

GinsBabu wrote:Hi,

I have a zip in remote machine.The zip contains some images.The path to the zip file is given as http://www.example.com/image.zip.How can i extract the zip file to the server?currently am doing this with the ziparchieve function.But it takes too much time.so is there any other way to reduce the processing time.Any help would be grateful.I want to do this in zend.is there any library available for zend to do this....:)
You're not going to be able to beat the speeds of built in PHP functions - they are compiled, I.E, it kicks the crap (speedwise) out of PHP.
GinsBabu
Forum Newbie
Posts: 8
Joined: Sat Oct 24, 2009 7:00 am

Re: Unzip File

Post by GinsBabu »

Hi markusn,

I know that cannot be done..:).i just wanted t o know whether is dere any other script or library which can pretty much faster do the process like we use curl for urls, likewise i meant..
Post Reply