blob: 1057e7c0d1b3fef73361092c358ef7de5b2bec69 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?php
class p_stat extends prog {
public static function perms($perms) {
if (($perms & 0xC000) == 0xC000) {
$info = 's'; // Socket
} elseif (($perms & 0xA000) == 0xA000) {
$info = 'l'; // Symbolic Link
} elseif (($perms & 0x8000) == 0x8000) {
$info = '-'; // Regular
} elseif (($perms & 0x6000) == 0x6000) {
$info = 'b'; // Block special
} elseif (($perms & 0x4000) == 0x4000) {
$info = 'd'; // Directory
} elseif (($perms & 0x2000) == 0x2000) {
$info = 'c'; // Character special
} elseif (($perms & 0x1000) == 0x1000) {
$info = 'p'; // FIFO pipe
} else {
$info = 'u'; // Unknown
}
// Owner
$info .= (($perms & 0x0100) ? 'r' : '-');
$info .= (($perms & 0x0080) ? 'w' : '-');
$info .= (($perms & 0x0040) ?
(($perms & 0x0800) ? 's' : 'x' ) :
(($perms & 0x0800) ? 'S' : '-'));
// Group
$info .= (($perms & 0x0020) ? 'r' : '-');
$info .= (($perms & 0x0010) ? 'w' : '-');
$info .= (($perms & 0x0008) ?
(($perms & 0x0400) ? 's' : 'x' ) :
(($perms & 0x0400) ? 'S' : '-'));
// World
$info .= (($perms & 0x0004) ? 'r' : '-');
$info .= (($perms & 0x0002) ? 'w' : '-');
$info .= (($perms & 0x0001) ?
(($perms & 0x0200) ? 't' : 'x' ) :
(($perms & 0x0200) ? 'T' : '-'));
return '('.substr(sprintf('%o',$perms),-4).'/'.$info.')';
}
public static function main($args, $env) {
$me = array_shift($args);
$ret = 0;
foreach ($args as $file) {
$data = stat($file);
if ($data === false) {
echo $me.': cannot stat file: `'.$file."'\n";
$ret++;
} else {
echo ' File: `'.$file."'\n";
echo ' Size: '.$data['size']."\t";
echo 'Blocks: '.$data['blocks']."\t";
//echo 'IO Block: ';
echo $data['rdev']."\n";
echo 'Device: '.$data['dev']."\t";
echo 'Inode: '.$data['ino']."\t";
echo 'Links: '.$data['nlink']."\n";
echo 'Access: '.self::perms($data['mode'])."\t";
echo "\n";
}
}
return $ret;
}
}
|