|
Posted by Clive on 10/09/50 11:30
Richard Lynch wrote:
> On Wed, October 26, 2005 5:44 am, Clive wrote:
>
>>does any one have code/examples for unzipping a file thats been
>>uploaded
>>to a server. I would prefer a class rather than something that uses
>>zip.lib as it may not be configured on the server.
>
>
> $path = "/full/path/to/uploaded/file.zip";
> exec("/full/path/to/bin/unzip $path", $output, $error);
> if ($error){
> die("OS Error: $error<br />\n" . nl2br($output));
> }
> $unzipped = str_replace(".zip", '', $path);
> $file = file_get_contents($unzipped);
>
Is the unzip command standerd on linux systems?
What happens if the app is run on a windows machine. I Suppose I will
have to include support for pkunzip or whatever its called nowadays.
clive
Navigation:
[Reply to this message]
|