Antichat снова доступен.
Форум Antichat (Античат) возвращается и снова открыт для пользователей.
Здесь обсуждаются безопасность, программирование, технологии и многое другое.
Сообщество снова собирается вместе.
Новый адрес: forum.antichat.xyz
 |
|
Сжатие в zip-файл директории |

19.11.2007, 15:59
|
|
Постоянный
Регистрация: 19.03.2007
Сообщений: 684
Провел на форуме: 3152874
Репутация:
1020
|
|
Сжатие в zip-файл директории
Собственно, мне необходимо скриптик на php которому передаешь названия диры - а он ее сжимает в zip архив вместе совсеми каталогами и файлами.Где то я видел такой.
|
|
|

19.11.2007, 16:20
|
|
Reservists Of Antichat - Level 6
Регистрация: 23.08.2007
Сообщений: 1,237
Провел на форуме: 18127311
Репутация:
1676
|
|
Адаптируй код отсюда http://devzone.zend.com/article/2105-Dynamically-Creating-Compressed-Zip-Archives-With-PHP
|
|
|

19.11.2007, 16:28
|
|
Постоянный
Регистрация: 19.03.2007
Сообщений: 684
Провел на форуме: 3152874
Репутация:
1020
|
|
Не я хотел готовые, ну ладно буду сам кодлить. А на счет сылки, в мане по пхп таких примеров хватает, уж лучше я возьму готовый класс из phpMyAdmin zip.lib.php. Ну все равно спасибо.
|
|
|

19.11.2007, 16:40
|
|
Познавший АНТИЧАТ
Регистрация: 02.05.2006
Сообщений: 1,191
Провел на форуме: 7364332
Репутация:
1276
|
|
Вот держи... писал давно для себя и написан коряво на работает
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($zdata, 0, strlen($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', 0 ); // extra field length
$cdrec .= pack('v', 0 ); // file comment length
$cdrec .= pack('v', 0 ); // disk number start
$cdrec .= pack('v', 0 ); // 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
Думаю не надо объяснять как и что делать... сам разберешься...)
|
|
|

19.11.2007, 16:46
|
|
Постоянный
Регистрация: 19.03.2007
Сообщений: 684
Провел на форуме: 3152874
Репутация:
1020
|
|
Главное что работает...,
_readdir('/home/',&$files); // ТУт указываем полный путь до папки которую нужно жать....
спс.+
Последний раз редактировалось AkyHa_MaTaTa; 19.11.2007 в 16:49..
|
|
|

19.11.2007, 17:08
|
|
Познавший АНТИЧАТ
Регистрация: 29.04.2007
Сообщений: 1,189
Провел на форуме: 5749763
Репутация:
1680
|
|
хорошая тема
DIAgen +
|
|
|

29.11.2007, 19:10
|
|
Участник форума
Регистрация: 05.04.2007
Сообщений: 123
Провел на форуме: 507350
Репутация:
27
|
|
PCLZip вроде так называеться, мощная библиотека для создания ZIP-архивов, а не то что в phpMyAdmin псевдо zip-архивы.
Она как раз может сразу папку запаковывать и т.п.
|
|
|

29.11.2007, 19:23
|
|
Banned
Регистрация: 27.06.2006
Сообщений: 1,614
Провел на форуме: 3887520
Репутация:
2996
|
|
system("zip '$file' . '$dir'");
|
|
|

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

02.12.2007, 22:51
|
|
Познавший АНТИЧАТ
Регистрация: 13.04.2006
Сообщений: 1,738
Провел на форуме: 5151669
Репутация:
1198
|
|
Сообщение от 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
|
|
|
|
 |
|
|
Здесь присутствуют: 1 (пользователей: 0 , гостей: 1)
|
|
|
|