0

I am done with uploading file in codeigniter. Saved information of uploaded file in DB. I am getting file size in KB, now.

I want file size in MB.

HaveNoDisplayName
  • 8,291
  • 106
  • 37
  • 47
Arjun
  • 769
  • 1
  • 5
  • 20
  • This answer could help; http://stackoverflow.com/questions/5501427/php-filesize-mb-kb-conversion – Craig Sep 03 '15 at 10:26

1 Answers1

0

Retrieve all data from uploaded file

$file = $this->upload->data();

print_r($file);//show array elements

$size_in_kb = $file[0]['file_size'];
$size_in_mb = $size_in_kb/1024;

echo 'File size in KB:'.$size_in_kb;
echo '<br>File size in MB:'.$size_in_mb;
Abdulla Nilam
  • 36,589
  • 17
  • 64
  • 85