extract a zip file to a folder
extract a zip file to a folder
extract a zip file to a folder
<?php
//download library from http://www.phpconcept.net/pclzip/index.en.php#download
include(’pclzip.lib.php’);
//zip file to extract
$archive = new PclZip(’printerport1.zip’);
//extract to a folder called newdir
if ($archive->extract(PCLZIP_OPT_PATH
Related posts:
- backup a folder to a zip file Learn more about backup a folder to a zip file...
- open a zip file and display file information Learn more about open a zip file and display file...
- list files in a folder in a text file Learn more about list files in a folder in a...
- Copy a folder Learn more about Copy a folder by visiting our website....
- Move a folder Learn more about Move a folder by visiting our website....
Related posts brought to you by Yet Another Related Posts Plugin.

