]> git.mxchange.org Git - friendica.git/commitdiff
moved formatBytes() to /include/text.php
authorrabuzarus <>
Mon, 29 Jun 2015 09:22:29 +0000 (11:22 +0200)
committerrabuzarus <>
Mon, 29 Jun 2015 09:22:29 +0000 (11:22 +0200)
include/Photo.php
include/text.php

index 0adc55258bac8a0d2f2ce5eedf9d72105d72d3e4..785601c7e4eb3e15584645f7c9c660fa8d31d3f6 100644 (file)
@@ -1014,14 +1014,3 @@ function store_photo($a, $uid, $imagedata = "", $url = "") {
        return($image);
 }
 
-function formatBytes($bytes, $precision = 2) { 
-        $units = array('B', 'KB', 'MB', 'GB', 'TB'); 
-
-       $bytes = max($bytes, 0); 
-       $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); 
-       $pow = min($pow, count($units) - 1); 
-
-       $bytes /= pow(1024, $pow);
-
-       return round($bytes, $precision) . ' ' . $units[$pow]; 
-} 
index 5c6ab588f1ba2b4cb011bd575622eaaf5afcdb1f..829e37c2ce97f8088bbd1e2a480454ff681f7c8d 100644 (file)
@@ -2282,3 +2282,15 @@ function deindent($text, $chr="[\t ]", $count=NULL) {
 
        return implode("\n", $lines);
 }
+
+function formatBytes($bytes, $precision = 2) { 
+        $units = array('B', 'KB', 'MB', 'GB', 'TB'); 
+
+       $bytes = max($bytes, 0); 
+       $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); 
+       $pow = min($pow, count($units) - 1); 
+
+       $bytes /= pow(1024, $pow);
+
+       return round($bytes, $precision) . ' ' . $units[$pow]; 
+}