Having a tough one with this.
Language doesn't matter; C, PHP
I want to read a binary file, taking the first 32 bits (for example) and assigning that to a int or long. The data is binary, hence a number value, not a string. Yet, when I attempt this in PHP using fread() the data is returned as a string (used fopen(path_to_file, "rb")). I'm not interested at all in a string result, only it's natural value (as INT or LONG; whatever number value those bits translate to). The number of bits (or byte blocks) I read will be variable, I used 32 here as an example.
I was fumbling around in C as well, but cannot seem to grasp how or why the values are being returned as strings (char *) and not as number values, which is what they are. My C is a bit rusty, so I'm probably just not understanding how to use the functions correctly or not understanding which ones to use.
- File A is 1024 bytes.
- Want to read the first 32 bits, saving those bits as a number value into var b.
- Perform bit wise operations on b.
I've seen a few postings here with similar questions, but not precisely. The answers some came up with seem pretty complex. To me, since raw binary data is a number value, the code to do what I want should be remarkably simple.
Any help, appreciated. Thanks.