Remove unused function return_bytes

This commit is contained in:
Philipp Holzer 2019-10-23 00:15:17 +02:00
parent 2870f42ca2
commit 4704bf6394
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 0 additions and 14 deletions

View File

@ -209,20 +209,6 @@ function get_cats_and_terms($item)
return [$categories, $folders]; 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 /// @TODO Rewrite this
function is_a_date_arg($s) { function is_a_date_arg($s) {
$i = intval($s); $i = intval($s);