self::format($free_bytes), 'free_bytes' => $free_bytes, 'occupied' => self::format($occ_bytes), 'occupied_bytes' => $occ_bytes, 'total' => self::format($total_bytes), 'total_bytes' => $total_bytes, ]; } } // Использование: $path = $_SERVER['DOCUMENT_ROOT']; $info = DiskSpace::get($path); print_r($info); /* Результат: Array ( [free] => 67.17 Гб [free_bytes] => 72120483840 [occupied] => 1.39 Тб [occupied_bytes] => 1528753938432 [total] => 1.46 Тб [total_bytes] => 1600874422272 ) */