i try to extract a rar file via php but i get an error:
Fatal error: Call to undefined function: rar_open() in --parksdiary.com/httpdocs/rar2.php on line 8
my codes:
<?php
$filename = "file.rar";
$filepath = "/rar_ac";
$rar_file = rar_open($filepath.$filename); <--- here is the rar_open function line
$list = rar_list($rar_file);
foreach($list as $file) {
$entry = rar_entry_get($rar_file, $file);
$entry->extract(".");
}
rar_close($rar_file);
?>
i dont understand why iam getting this error ??? may you help me ?