$rar_file = rar_open($filepath.$filename); $list = rar_list($rar_file);
foreach($list as $file) { $entry = rar_entry_get($rar_file, $file); $entry->extract("."); // extract to the current dir } rar_close($rar_file);
?>
add a note
User Contributed Notes Extract entry from the archive
There are no user contributed notes for this page.