- function ezip($zip, $target = ''){
- $dirname=preg_replace('/.zip/', '', $zip);
- $root = $_SERVER['DOCUMENT_ROOT'].' /zip/';
- // echo $root. $zip;
- $zip = zip_open($root . $zip);
- // var_dump($zip);
- @mkdir($root . $target . $dirname.'/'.$zip_file);
- while($ zip_content = zip_read($zip)){
-
- $zip_file = zip_entry_name($zip_content);
- if(strpos($zip_file, '.')){
- $target_path = $root . $target . $dirname.'/'.$zip_file;
- @touch($destination_path);
- // echo $destination_path;
- $new_file = @fopen($destination_path, 'w+');
- @fwrite($new_file, zip_entry_read($ zip_content));
- @fclose($new_dosya);
- // $new_file;
-
- }else{
- @mkdir($root . $target . $dirname.'/'.$zip_file);
- // echo $root . $target . 'x/'.$zip_dosya;
- };
- };
- }
- // ezip('yuol.zip','./tr/');
-
- function zip($path) {
- $path=preg_replace( '//$/', '', $path);
- preg_match('//([dD][^/]*)$/', $path, $matches, PREG_OFFSET_CAPTURE);
- $filename=$matches[ 1][0].".zip";
- // var_dump($filename);
- // set_time_limit(0);
- $zip = new ZipArchive();
- $zip->open($filename,ZIPARCHIVE: :OVERWRITE);//return ;
- // var_dump($path);
- if (is_file($path)) {
- $path=preg_replace('////', '/', $path);
- $ base_dir=preg_replace('//[dD][^/]*$/', '/', $path);
- $base_dir=addcslashes($base_dir, '/:');
-
- $localname=preg_replace(' /'.$base_dir.'/', '', $path);
- // var_dump($localname);
- $zip->addFile($path,$localname);
- // var_dump($path);
- $zip->close();
- return;
- }elseif (is_dir($path)) {
- $path=preg_replace('//[dD][^/]*$/', '', $path );
- $base_dir=$path.'/';//基目录
- $base_dir=addcslashes($base_dir, '/:');
- // var_dump($base_dir);
- }
- $path=preg_replace(' ////', '/', $path);
- // var_dump($path);
- function addItem($path,&$zip,&$base_dir){
- // var_dump($path);
- $ handle = opendir($path);
- // var_dump($path);
- while (false !== ($file = readdir($handle))) {
- if (($file!='.')&&( $file!='..')){
- // var_dump($file);
- $ipath=$path.'/'.$file;
- if (is_file($ipath)){//条目是文件
- $localname=preg_replace('/'.$base_dir.'/', '', $ipath);
- var_dump($localname);
- $zip->addFile($ipath,$localname);
- // var_dump( $r);
- } else if (is_dir($ipath)){
- addItem($ipath,$zip,$base_dir);
- $localname=preg_replace('/'.$base_dir.'/', '', $ ipath);
- var_dump($localname);
- $zip->addEmptyDir($localname);
- }
- // var_dump($path);
- }
- }
- }
- // var_dump($base_dir);
- addItem ($path,$zip,$base_dir);
- $zip->close();
- }
- //调用方法
- zip('解压的目录');
复制代码
|