63 header(
"Location: " . htmlspecialchars_decode($callback_url));
132 $unit = array(
'B',
'KB',
'MB',
'GB',
'TB');
133 $bytes = max($bytes, 0);
134 $pow = floor(($bytes ? log($bytes) : 0) / log(1024));
135 $pow = min($pow, count($unit) - 1);
136 $bytes /= pow(1024, $pow);
137 return round($bytes, 2) .
' ' . $unit[$pow];
146 return isset($_SERVER[
'HTTPS']) && $_SERVER[
'HTTPS'] !=
'off' ?
'HTTPS' :
'HTTP';