Tạo 1 file bất kỳ ví dụ giainen.php dán code này vào
PHP:
<?php
$name="example.rar";
//tên file
$path="/files/";
//thư mục chứa file
$get=rar_open($name.$path);
$getl=rar_list($get);
foreach($getl as $file){
$extract=rar_get_entry($get, $file);
//giải nén vào thư mục
}
rar_close($get);
?>