Current location: Hot Scripts Forums » Programming Languages » PHP » filesize() - bytes to KB & MB?


filesize() - bytes to KB & MB?

Reply
  #1 (permalink)  
Old 11-23-04, 02:28 PM
steveo steveo is offline
Wannabe Coder
 
Join Date: Jun 2004
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
filesize() - bytes to KB & MB?

Hello, I'm currently using the filesize() function to create the file size of my files.

It outputs this in bytes.
I'm wondering if anyone knows how I can transform the bytes into KB and MB?

Any help would be appreciated,
thanks in advance,
Steve.
Reply With Quote
  #2 (permalink)  
Old 11-23-04, 03:24 PM
vek vek is offline
Newbie Coder
 
Join Date: Oct 2004
Location: Florence, Ky
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
nothing fancy, but will work...
PHP Code:

if($size >= 1048576)

{
   
$size /= 1048576;
   
$size round($size2);
   
$filesize $size ' MB';
}
elseif(
$size >= 1024)
{
   
$size /= 1024;
   
$size round($size2);
   
$filesize $size ' KB';
}
else
{
   
$filesize $size ' bytes';

Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Seriously cheap web hosting, 600 mb space, 15 GB bw $2.50 aa70 General Advertisements 1 07-28-05 11:50 PM
Ints and bytes RichieMac Everything Java 1 10-07-04 10:18 AM
Free hosting - 50 Mb space, 500 Mb transfer at heydo xenu General Advertisements 1 08-22-04 09:44 AM
2000 MB space - 40GB/month transfer- Asp, ASP.NET, Php,MySQL, MS SQL Firefrog General Advertisements 0 07-29-04 04:54 PM
450 mb space, 20 gb bw per month $3 per month, cpanel 9 fantastico aa70 General Advertisements 0 06-27-04 04:10 AM


All times are GMT -5. The time now is 05:16 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.