[Pregunta]: Pasar Bytes a Kilobytes

Iniciado por Leguim, 15 Agosto 2020, 22:05 PM

0 Miembros y 1 Visitante están viendo este tema.

Leguim

Estoy teniendo un problema y es que se dice que la formula es...

Código (php) [Seleccionar]

$bytes / 1024 => $kilobytes
/code]

pero cuando uso el conversor de google ellos dicen que la formula es...
[code=php]
$bytes / 1000 => $kilobytes


¿Entonces en que quedamos?[/code]

MinusFour

Sí, técnicamente kilobytes es 1000 bytes. Para prefijos binarios tenemos:

kibi = 1024 = 2^10
mebi = 1024 * 1024 = 2^10 * 2^10 = 2^20
gibi = 1024 * 1024 * 1024 = 2 ^10 * 2^10 * 2^10 = 2^30
tebi = 1024 * 1024 * 1024 * 1024 = 2^10 * 2^10 * 2^10 * 2^10 = 2^40

Y otros más:

https://en.wikipedia.org/wiki/Binary_prefix#Adoption_by_IEC,_NIST_and_ISO