In my code, I am reading data from an array of 16-bit values, where some of the data really contains signed 32-bit variables (from a big-endian system). So I'll do something like:
$value = $data[$i] << 16 | $data[$i+1];
This works fine on a 32-bit system, but when running on a 64-bit system, this will be interpreted as a positive number (the twos-complement as a 32-bit number). Of course, I can manually check if the highest bit is set, and subtract, but it gets a bit clunky, especially since I would like the code to work both on 32 and 64-bit systems. Is there a simple and good way of doing this?