Hello,
How i would do this in php:
(c code)
unsigned long X;
fread(&X, 4, 1, filehandle);
I surely can read 4 bytes from the stream, but they won't be unsigned long.
I can't shifting bytes and adding character codes together, is there another way? am i missing something?
thank you!
😕