vote up 0 vote down star

Hi, how can I convert kilobytes to bytes in php? Let's say I get the value 22.2 kb and I want to return this in bytes.

Thanks, Max

flag

3  
kb is kilobits. kilobytes is kB. – liori Sep 21 at 21:35
2  
@liori: Actually kb is an Intel kilobyte: xkcd.com/394 – Grant Wagner Sep 21 at 21:42
1  
k = 1,000 and K = 1,024. b = bits and B = bytes. So kilobyte = KB. Ignore what ISO has to say about "kibibytes" and so on; no one uses those in the real world. – Loadmaster Sep 22 at 0:03
I suppose you also think m = 1,000,000 and M = 1,048,576? Lots of people use KiB in the real world, and the people who don't use kB = 1000 B. K = 1024 is flat out wrong. – endolith Oct 21 at 18:00

4 Answers

vote up 3 vote down check

multiply by 1024

link|flag
1  
Teach a man to fish... – LiraNuna Sep 21 at 21:37
"Multiply by 1000", you mean. – endolith Oct 21 at 18:01
A kilobyte in decimal format is 1000, but for nearly all software purposes you need the binary format which is 1024. Reference: en.wikipedia.org/wiki/Kilobyte – Eddie Oct 23 at 20:21
vote up 6 vote down

This sounds like homework, but 1Kb = 1024 bytes, so you should be able to determine the equation.

link|flag
vote up 1 vote down

If you're ever confused for comparable values, you can always google "1 megabyte in kilobytes" and it will return the comparative value.

link|flag
vote up 1 vote down

This calls for a... link!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.