An integer number in its decimal representation has a display size of max. 10 text characters. When writing this integer to a file, php/fwrite uses the same text format.
How can I store it by value instead of text, so the integer only takes up the 4 bytes (or 32 bits) that it (often) consists of?
How can I store it by value instead of text, so the integer only takes up the 4 bytes (or 32 bits) that it (often) consists of?