-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtgz_explode.php
31 lines (30 loc) · 1.04 KB
/
tgz_explode.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
function tgz_explode($data) {
$data = @gzdecode($data);
$filesize = strlen($data);
if($filesize<1024) return array();
$total = 0;
$result = array();
while($block = substr($data, $total, $total+512)) {
$meta = array();
$meta['filename'] = trim(substr($block, 0, 99));
$meta['mode'] = octdec((int)trim(substr($block, 100, 8)));
$meta['userid'] = octdec(substr($block, 108, 8));
$meta['groupid'] = octdec(substr($block, 116, 8));
$meta['filesize'] = octdec(substr($block, 124, 12));
$meta['mtime'] = octdec(substr($block, 136, 12));
$meta['header_checksum'] = octdec(substr($block, 148, 8));
$meta['link_flag'] = octdec(substr($block, 156, 1));
$meta['linkname'] = trim(substr($block, 157, 99));
$meta['databytes'] = ($meta['filesize'] + 511) & ~511;
if($meta['databytes'] > 0) {
$block = substr($data, $total + $meta['databytes'] - $meta['filesize']);
$result[] = array('meta' => $meta, 'data' => $block);
$total += $meta['databytes'];
}
$total+= 512;
if ($total >= $filesize-1024) {
return $result;
}
}
}