Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要读取一个数据包,小端,长长(64位)这工作正常:
echo unpack("V", $packet) . unpack("V", $packet);
但为什么这不起作用?
echo unpack("V2", $packet);
尝试
echo unpack("V2", $packet, $packet >> 32);