GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Wednesday, March 9, 2011

PHP - Extract Just Selected Files

<?php
   
$zip = new ZipArchive();

if(!$zip->open('po.zip')){
    echo "Could not open zip file";
}



$selected_files = array('po/index.php','po/index.html');
echo $zip->extractTo('kuliah',$selected_files);
$zip->close();

?>

Share/Bookmark

No comments:

Post a Comment