]> git.mxchange.org Git - friendica.git/commitdiff
Remove unused function return_bytes
authorPhilipp Holzer <admin+github@philipp.info>
Tue, 22 Oct 2019 22:15:17 +0000 (00:15 +0200)
committerPhilipp Holzer <admin+github@philipp.info>
Tue, 22 Oct 2019 22:15:17 +0000 (00:15 +0200)
include/text.php

index 6eb1e46ffd0021e62e95d4b8cd4d5261e872f176..cc4b8e128e7b34d5749acbb70c3d82ae1688f96b 100644 (file)
@@ -209,20 +209,6 @@ function get_cats_and_terms($item)
        return [$categories, $folders];
 }
 
-/**
- * return number of bytes in size (K, M, G)
- * @param string $size_str
- * @return int
- */
-function return_bytes($size_str) {
-       switch (substr ($size_str, -1)) {
-               case 'M': case 'm': return (int)$size_str * 1048576;
-               case 'K': case 'k': return (int)$size_str * 1024;
-               case 'G': case 'g': return (int)$size_str * 1073741824;
-               default: return $size_str;
-       }
-}
-
 /// @TODO Rewrite this
 function is_a_date_arg($s) {
        $i = intval($s);