We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

DeadLy on 01/18/08


Tagged

convert


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

Nix
logankoester


Convert size in *KB, *MB, *GB ....


Published in: PHP 


  1. function file_size($size)
  2. {
  3. $filesizename = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
  4. return $size ? round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $filesizename[$i] : '0 Bytes';
  5. }

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: virus_king on March 5, 2008

thanksZZzzZZZzzz....

You need to login to post a comment.