1 | <?php |
||
5 | |||
6 | |||
7 | class FilesizeHelper extends Helper |
||
8 | { |
||
9 | private $size; |
||
10 | private $commas; |
||
11 | private $decimals; |
||
12 | |||
13 | public function help($size, $decimals = 2, $commas = true) |
||
21 | |||
22 | public function commas($commas) |
||
27 | |||
28 | public function decimals($decimals) |
||
33 | |||
34 | public function __toString() |
||
35 | { |
||
36 | $output = null; |
||
37 | $scales = array( |
||
38 | array(0, 1024, 'Byte', 'Byte', false), |
||
39 | array(1024, 1048576, 'Kilobyte', 'KB', true), |
||
40 | array(1048576, 1073741824, 'Megabyte', 'MB', true), |
||
41 | array(1073741824, 1099511627776, 'Gigabyte', 'GB', true), |
||
42 | array(1099511627776 ,1125899906842620, 'Terabyte', 'TB', true), |
||
43 | array(1125899906842620, 1152921504606850000, 'Petabyte', 'PB', true) |
||
44 | ); |
||
45 | |||
46 | $devisor = 1; |
||
47 | foreach($scales as $scale) |
||
48 | { |
||
49 | if($this->size >= $scale[0] && $this->size < $scale[1]) |
||
50 | { |
||
51 | $size = $this->size / $devisor; |
||
52 | $output = number_format($size, $scale[4] ? $this->decimals : 0, '.', $this->commas) |
||
53 | . " {$scale[2]}" |
||
54 | . ($size <> 1 ? 's' : ''); |
||
55 | break; |
||
56 | } |
||
57 | $devisor = $scale[1]; |
||
58 | } |
||
59 | |||
60 | return $output; |
||
61 | } |
||
63 |