/ Published in: PHP
Expand |
Embed | Plain Text
<?php function unzip_to($file, $to) { $zip = zip_open($root . $file); while($zip_read = zip_read($zip)) { $zip_file = $root . $to . zip_entry_name($zip_read); else { } } zip_close($zip); } unzip_to('files/punbb-1.3.4.zip', './a/');
You need to login to post a comment.
