Awesomeness is…
… thinking you only have one beer left, but you have really have two…. awesome…
… thinking you only have one beer left, but you have really have two…. awesome…
Code for displaying bytes as kilobytes, megabytes and gigabytes in human readable format:
function humanSize ($size) {
if ($size <= 1024) return $size.' Bytes';
else if ($size <= (1024*1024)) return sprintf('%d KB',(int)($size/1024));
else if ($size <= (1024*1024*1024)) return sprintf('%.2f MB',($size/(1024*1024)));
else return sprintf('%.2f Gb',($size/(1024*1024*1024)));
}
Hello all… Well I’m trying to actually try something with this website other than use it for email and file dumpin’.
Created another blog. Lets see how long this will go for…