<?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();
?>
$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();
?>
No comments:
Post a Comment