1. PHP declare(ticks=N); 的作用

https://blog.csdn.net/udefined/article/details/24333333

2. pack && unpack

https://my.oschina.net/goal/blog/195749

3. 端口复用

https://www.cnblogs.com/shengulong/p/10206668.html

4. 网络字节序

网络字节顺序TCP/IP规定好的一种数据表示格式它与具体的CPU类型、操作系统等无关,从而可以保证数据在不专同主机之间传输时能够被正确解释。网络字节顺序采用big endian排序方式。

php写法: pack('N',$data);

5. 主机字节序

主机字节序就是我们平常说的大端和小端模式:不同的 CPU 有不同的字节序类型,这些字节序是指整数在属内存中保存的顺序 这个叫做主机序。

6. short、int、long、char、float、double

https://blog.csdn.net/u011068702/article/details/50551942

 

相关文章:

  • 2022-12-23
  • 2021-10-07
  • 2021-11-01
  • 2022-01-10
  • 2022-12-23
  • 2021-10-08
  • 2021-08-23
  • 2021-06-09
猜你喜欢
  • 2021-10-07
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2021-11-27
  • 2022-02-08
相关资源
相似解决方案