Форум АНТИЧАТ

Форум АНТИЧАТ (https://forum.antichat.xyz/index.php)
-   ПО для Web разработчика (https://forum.antichat.xyz/forumdisplay.php?f=92)
-   -   Сжатие в zip-файл директории (https://forum.antichat.xyz/showthread.php?t=53918)

AkyHa_MaTaTa 19.11.2007 15:59

Сжатие в zip-файл директории
 
Собственно, мне необходимо скриптик на php которому передаешь названия диры - а он ее сжимает в zip архив вместе совсеми каталогами и файлами.Где то я видел такой.

Kaimi 19.11.2007 16:20

Адаптируй код отсюда http://devzone.zend.com/article/2105-Dynamically-Creating-Compressed-Zip-Archives-With-PHP

AkyHa_MaTaTa 19.11.2007 16:28

Не я хотел готовые, ну ладно буду сам кодлить. А на счет сылки, в мане по пхп таких примеров хватает, уж лучше я возьму готовый класс из phpMyAdmin zip.lib.php. Ну все равно спасибо.

DIAgen 19.11.2007 16:40

Вот держи... писал давно для себя и написан коряво на работает
PHP код:

<?php
@ini_set('set_time_limit',0);
@
set_time_limit(0);
error_reporting(7);

$zipfile = new zipfile();
 function 
_readdir($d,&$files) {
global 
$opendir;
$dir opendir ($d);
  while ( 
$file readdir ($dir))
  {
     if (( 
$file != ".") && ($file != ".."))
{
   
$opendir=$d.'/'.$file;
         if(
filetype($opendir)=="dir")
        {
        
_readdir($opendir,&$files);
        }
        else
        {
         
$files[] = $opendir;

   }
   }
}
   
closedir ($dir);
 }
 
 
_readdir('/home/',&$files); // ТУт указываем полный путь до папки которую нужно жать....
 
  
foreach ($files as $index) {
 
$zipfile -> addFile(file_get_contents($index), $index);
 }

$dump_buffer $zipfile -> file(); // отправляем готовый архив в переменную для экспорта(вывода)

header('Content-Type: application/x-zip');
header("Content-Length: ".strlen($dump_buffer));
header('Content-Disposition: attachment; filename="myarchive.zip"');
echo 
$dump_buffer

class 
zipfile
{

    var 
$datasec      = array();

    var 
$ctrl_dir     = array();

    var 
$eof_ctrl_dir "\x50\x4b\x05\x06\x00\x00\x00\x00";

    var 
$old_offset   0;


    function 
unix2DosTime($unixtime 0) {
        
$timearray = ($unixtime == 0) ? getdate() : getdate($unixtime);

        if (
$timearray['year'] < 1980) {
                
$timearray['year']    = 1980;
                
$timearray['mon']     = 1;
                
$timearray['mday']    = 1;
                
$timearray['hours']   = 0;
                
$timearray['minutes'] = 0;
                
$timearray['seconds'] = 0;
        } 
// end if

        
return (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) |
                (
$timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1);
    } 
// end of the 'unix2DosTime()' method
    
function addFile($data$name$time 0)
    {
        
$name     str_replace('\\''/'$name);

        
$dtime    dechex($this->unix2DosTime($time));
        
$hexdtime '\x' $dtime[6] . $dtime[7]
                  . 
'\x' $dtime[4] . $dtime[5]
                  . 
'\x' $dtime[2] . $dtime[3]
                  . 
'\x' $dtime[0] . $dtime[1];
        eval(
'$hexdtime = "' $hexdtime '";');

        
$fr   "\x50\x4b\x03\x04";
        
$fr   .= "\x14\x00";            // ver needed to extract
        
$fr   .= "\x00\x00";            // gen purpose bit flag
        
$fr   .= "\x08\x00";            // compression method
        
$fr   .= $hexdtime;             // last mod time and date

        // "local file header" segment
        
$unc_len strlen($data);
        
$crc     crc32($data);
        
$zdata   gzcompress($data);
        
$zdata   substr(substr($zdata0strlen($zdata) - 4), 2); // fix crc bug
        
$c_len   strlen($zdata);
        
$fr      .= pack('V'$crc);             // crc32
        
$fr      .= pack('V'$c_len);           // compressed filesize
        
$fr      .= pack('V'$unc_len);         // uncompressed filesize
        
$fr      .= pack('v'strlen($name));    // length of filename
        
$fr      .= pack('v'0);                // extra field length
        
$fr      .= $name;

        
// "file data" segment
        
$fr .= $zdata;

        
// "data descriptor" segment (optional but necessary if archive is not
        // served as file)
        
$fr .= pack('V'$crc);                 // crc32
        
$fr .= pack('V'$c_len);               // compressed filesize
        
$fr .= pack('V'$unc_len);             // uncompressed filesize

        // add this entry to array
        
$this -> datasec[] = $fr;

        
// now add to central directory record
        
$cdrec "\x50\x4b\x01\x02";
        
$cdrec .= "\x00\x00";                // version made by
        
$cdrec .= "\x14\x00";                // version needed to extract
        
$cdrec .= "\x00\x00";                // gen purpose bit flag
        
$cdrec .= "\x08\x00";                // compression method
        
$cdrec .= $hexdtime;                 // last mod time & date
        
$cdrec .= pack('V'$crc);           // crc32
        
$cdrec .= pack('V'$c_len);         // compressed filesize
        
$cdrec .= pack('V'$unc_len);       // uncompressed filesize
        
$cdrec .= pack('v'strlen($name) ); // length of filename
        
$cdrec .= pack('v');             // extra field length
        
$cdrec .= pack('v');             // file comment length
        
$cdrec .= pack('v');             // disk number start
        
$cdrec .= pack('v');             // internal file attributes
        
$cdrec .= pack('V'32 );            // external file attributes - 'archive' bit set

        
$cdrec .= pack('V'$this -> old_offset ); // relative offset of local header
        
$this -> old_offset += strlen($fr);

        
$cdrec .= $name;

        
// optional extra field, file comment goes here
        // save to central directory
        
$this -> ctrl_dir[] = $cdrec;
    } 
// end of the 'addFile()' method
    
function file()
    {
        
$data    implode(''$this -> datasec);
        
$ctrldir implode(''$this -> ctrl_dir);

        return
            
$data .
            
$ctrldir .
            
$this -> eof_ctrl_dir .
            
pack('v'sizeof($this -> ctrl_dir)) .  // total # of entries "on this disk"
            
pack('v'sizeof($this -> ctrl_dir)) .  // total # of entries overall
            
pack('V'strlen($ctrldir)) .           // size of central dir
            
pack('V'strlen($data)) .              // offset to start of central dir
            
"\x00\x00";                             // .zip file comment length
    
// end of the 'file()' method

// end of the 'zipfile' class

Думаю не надо объяснять как и что делать... сам разберешься...)

AkyHa_MaTaTa 19.11.2007 16:46

Главное что работает...,
_readdir('/home/',&$files); // ТУт указываем полный путь до папки которую нужно жать....

спс.+

Nightmarе 19.11.2007 17:08

хорошая тема
DIAgen +

RaiDeRz 29.11.2007 19:10

PCLZip вроде так называеться, мощная библиотека для создания ZIP-архивов, а не то что в phpMyAdmin псевдо zip-архивы.
Она как раз может сразу папку запаковывать и т.п.

guest3297 29.11.2007 19:23

system("zip '$file' . '$dir'");

GrAmOzEkA 29.11.2007 20:19

PHP zip 1.8 RC1
Скрипт для работы с zip/rar архивами прямо на сервере через удобную оболочку. Просмотр содержимого архивов, распаковка всего целиком или отдельных файлов в выбранную папку и т.д.
ХоумПага: http://www.phpconcept.net/phpzip/

Sn@k3 02.12.2007 22:51

Цитата:

Сообщение от GrAmOzEkA
PHP zip 1.8 RC1
Скрипт для работы с zip/rar архивами прямо на сервере через удобную оболочку. Просмотр содержимого архивов, распаковка всего целиком или отдельных файлов в выбранную папку и т.д.
ХоумПага: http://www.phpconcept.net/phpzip/


п.с.
Код:

http://www.phpconcept.net/download.php?file='%22%3E'%3E%3Cscript%3Ealert();%3C/script%3Epclzip-2-6.zip


Время: 20:12