diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-04-23 10:06:17 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-04-23 10:06:17 -0700 |
commit | ce2c6c3ada2854777891a7a8edec66b7b5be72ad (patch) | |
tree | 93ac43ffc99cc29b115a88cf3af6906c0a418108 /modules/gallery/helpers/MY_num.php | |
parent | 993e49adda302c89ae84f8667fd2169f71b635d4 (diff) |
Add convert_to_human_readable and tests for both. Resolves #1693.
Diffstat (limited to 'modules/gallery/helpers/MY_num.php')
-rw-r--r-- | modules/gallery/helpers/MY_num.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/gallery/helpers/MY_num.php b/modules/gallery/helpers/MY_num.php index 9787044c..842a2ee3 100644 --- a/modules/gallery/helpers/MY_num.php +++ b/modules/gallery/helpers/MY_num.php @@ -37,4 +37,18 @@ class num extends num_Core { return $val; } + + /** + * Convert a size value as accepted by PHP's shorthand to bytes. + * ref: http://us2.php.net/manual/en/function.ini-get.php + * ref: http://us2.php.net/manual/en/faq.using.php#faq.using.shorthandbytes + */ + static function convert_to_human_readable($num) { + foreach (array("G" => 1e9, "M" => 1e6, "K" => 1e3) as $k => $v) { + if ($num > $v) { + $num = round($num / $v) . $k; + } + } + return $num; + } } |