I need to read a packet, little endian, long long(64 bit) this works fine:
echo unpack("V", $packet) . unpack("V", $packet);
but why this does not work?
echo unpack("V2", $packet);
I need to read a packet, little endian, long long(64 bit) this works fine:
echo unpack("V", $packet) . unpack("V", $packet);
but why this does not work?
echo unpack("V2", $packet);