Pankaj Kumar has a slightly disturbing look at memory usage in PHP.

Each element requires a value structure (zval) which takes 16 bytes.

Also requires a hash bucket – which takes 36 bytes. That gives 52 bytes

per value. Memory allocation headers take another 8 bytes*2 – which

gives 68 bytes. Pretty close to what you have.