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

luman on 08/03/06


Tagged

file size


Versions (?)


Who likes this?

22 people have marked this snippet as a favorite

pagetoscreen
meth
postNuKe
damarev
Jaymoon
pckujawa
NexusRex
blakeb
banjomamo
Ravensky
vali29
hudge
m-alo
JimiJay
SpinZ
wbowers
Steffen82
dyesin
adamsimms
jamesming
elgermano
joaosalless


File Size


Published in: PHP 


  1. function file_size($file){
  2. $filesize = round((((int)$file)/1024)/1024,2);
  3. if($filesize >= 1) $filesize = $filesize."Mb";
  4. else $filesize = round((int)$file/1024,0)."Kb";
  5.  
  6. return $filesize;
  7. }

Report this snippet 

You need to login to post a comment.