我想tar.gz
使用 PHP 压缩(即时)格式的目录。我知道它可以通过exec
或使用this code
(使用 ZIP 格式)来完成,但我的主机不支持 exec 并且没有安装 PHP 的 zip 扩展。
在搜索互联网后,我遇到了this PHP code
:
<?php
// Computes the unsigned Checksum of a file’s header
// to try to ensure valid file
// PRIVATE ACCESS FUNCTION
function __computeUnsignedChecksum($bytestring) {
for($i=0; $i<512; $i++)
$unsigned_chksum += ord($bytestring[$i]);
for($i=0; $i<8; $i++)
$unsigned_chksum -= ord($bytestring[148 + $i]);
$unsigned_chksum += ord(" ") * 8;
return $unsigned_chksum;
}
// Generates a TAR file from the processed data
// PRIVATE ACCESS FUNCTION
function tarSection($Name, $Data, $information=NULL) {
// Generate the TAR header for this file
$header .= str_pad($Name,100,chr(0));
$header .= str_pad("777",7,"0",STR_PAD_LEFT) . chr(0);
$header .= str_pad(decoct($information["user_id"]),7,"0",STR_PAD_LEFT) . chr(0);
$header .= str_pad(decoct($information["group_id"]),7,"0",STR_PAD_LEFT) . chr(0);
$header .= str_pad(decoct(strlen($Data)),11,"0",STR_PAD_LEFT) . chr(0);
$header .= str_pad(decoct(time(0)),11,"0",STR_PAD_LEFT) . chr(0);
$header .= str_repeat(" ",8);
$header .= "0";
$header .= str_repeat(chr(0),100);
$header .= str_pad("ustar",6,chr(32));
$header .= chr(32) . chr(0);
$header .= str_pad($information["user_name"],32,chr(0));
$header .= str_pad($information["group_name"],32,chr(0));
$header .= str_repeat(chr(0),8);
$header .= str_repeat(chr(0),8);
$header .= str_repeat(chr(0),155);
$header .= str_repeat(chr(0),12);
// Compute header checksum
$checksum = str_pad(decoct(__computeUnsignedChecksum($header)),6,"0",STR_PAD_LEFT);
for($i=0; $i<6; $i++) {
$header[(148 + $i)] = substr($checksum,$i,1);
}
$header[154] = chr(0);
$header[155] = chr(32);
// Pad file contents to byte count divisible by 512
$file_contents = str_pad($Data,(ceil(strlen($Data) / 512) * 512),chr(0));
// Add new tar formatted data to tar file contents
$tar_file = $header . $file_contents;
return $tar_file;
}
function targz($Name, $Data) {
return gzencode(tarSection($Name,$Data),9);
}
header("Content-Disposition: attachment; filename=backup.tar.gz");
header("Content-type: application/x-gzip");
$getfile = file_get_contents("test.txt");
echo targz('test.txt', $getfile);
?>
这确实适用于使用这个的多个文件:
header("Content-Disposition: attachment; filename=backup.tar.gz");
header("Content-type: application/x-gzip");
$getfile = file_get_contents("test.txt");
echo targz('test.txt', $getfile);
$getfile2 = file_get_contents("test2.txt");
echo targz('test2.txt', $getfile2);
现在backup.tar.gz
有 2 个文件(test.txt
和test2.txt
)。
但是我如何使用它来下载目录(和子目录)?
我的目录是这样的:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html