问题诞生了就会有解决的方法和途径,下面云阁网为大家讲解如果使用php解压rar压缩文件
方法有两种,一种是使用php拓展php_rar,另一种是调用php com组件执行解压,下面依次为大家讲解实现的方法和流程!
第一种、使用php_rar拓展解压rar
$rar_file = rar_open('test.rar') or die("Failed to open Rar archive");
$rar_file->extract($extractTo);2第二种、采用php com组件解压rar文件
function unrar($file,$dir){
if($obj=new com("wscript.shell")){
$obj->run('winrar x E:\web\\'.$file.' '.'D:\web\\'.$dir, 0, true);
return true;
}else{
return false;
}
}$file代表需要解压的文件名,需使用绝对路径$dir代表需要解压到的路径
原文出自:安德兔
