⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.74
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
View
/
Helper
/
Edit File: Number.php
<?php /** * Copyright 2007 Maintainable Software, LLC * Copyright 2006-2016 Horde LLC (http://www.horde.org/) * * @author Mike Naberezny <mike@maintainable.com> * @author Derek DeVries <derek@maintainable.com> * @author Chuck Hagenbuch <chuck@horde.org> * @license http://www.horde.org/licenses/bsd * @category Horde * @package View * @subpackage Helper */ /** * View helpers for numbers. * * @author Mike Naberezny <mike@maintainable.com> * @author Derek DeVries <derek@maintainable.com> * @author Chuck Hagenbuch <chuck@horde.org> * @license http://www.horde.org/licenses/bsd * @category Horde * @package View * @subpackage Helper */ class Horde_View_Helper_Number extends Horde_View_Helper_Base { /** * Formats the bytes in $size into a more understandable representation. * * Useful for reporting file sizes to users. This method returns NULL if * $size cannot be converted into a number. You can change the default * precision of 1 in $precision. * * <pre> * $this->numberToHumanSize(123) => 123 Bytes * $this->numberToHumanSize(1234) => 1.2 KB * $this->numberToHumanSize(12345) => 12.1 KB * $this->numberToHumanSize(1234567) => 1.2 MB * $this->numberToHumanSize(1234567890) => 1.1 GB * $this->numberToHumanSize(1234567890123) => 1.1 TB * $this->numberToHumanSize(1234567, 2) => 1.18 MB * </pre> * * @param integer|float $size Size to format. * @param integer $preceision Level of precision. * * @return string Formatted size value. */ public function numberToHumanSize($size, $precision = 1) { if (!is_numeric($size)) { return null; } if ($size == 1) { $size = '1 Byte'; } elseif ($size < 1024) { $size = sprintf('%d Bytes', $size); } elseif ($size < 1048576) { $size = sprintf("%.{$precision}f KB", $size / 1024); } elseif ($size < 1073741824) { $size = sprintf("%.{$precision}f MB", $size / 1048576); } elseif ($size < 1099511627776) { $size = sprintf("%.{$precision}f GB", $size / 1073741824); } else { $size = sprintf("%.{$precision}f TB", $size / 1099511627776); } return str_replace('.0', '', $size); } }
Simpan