Php siteleriniz için file ile dosya yüklediğinizde bu dosyanın boyutunu eğer db ye yazdırmak istiyorsanız aşağıdaki kodu kullanabilirsiniz. ve kaç kb,mb,gb olduğunu db yazdırabilirsiniz
<?php
function formatSizeUnits($bytes)
{
if ($bytes >= 1073741824)
{
$bytes = number_format($bytes / 1073741824, 2) . ' GB';
}
elseif ($bytes >= 1048576)
{
$bytes = number_format($bytes / 1048576, 2) . ' MB';
}
elseif ($bytes >= 1024)
{
$bytes = number_format($bytes / 1024, 2) . ' KB';
}
elseif ($bytes > 1)
{
$bytes = $bytes . ' bytes';
}
elseif ($bytes == 1)
{
$bytes = $bytes . ' byte';
}
else
{
$bytes = '0 bytes';
}
return $bytes;
}
?>
Linkback: https://www.buyuknet.com/yuklenen-dosyanin-boyutunu-ogrenme-ve-yazdirma-t43898.0.html