ConFoo Montreal 2026: Call for Papers

Voting

: six plus three?
(Example: nine)

The Note You're Voting On

nelson_km_94 at hotmail dot com
10 years ago
Example #2 has a mistake.

This one works fine:
<?php

/* example by Erik Jenssen aka erix */

$filename = "foobar.rar";
$filepath = "/home/foo/bar/";

$rar_file = rar_open($filepath.$filename);
$list = rar_list($rar_file);
foreach(
$list as $file) {
$entry = rar_entry_get($rar_file, $file->getName());
$entry->extract("."); // extract to the current dir
}
rar_close($rar_file);

?>

<< Back to user notes page

To Top