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.
如何在 php 中获取 UnsignedBytes?在 java 中非常简单:readUnsignedByte (Java)
php中没有字节数据类型,但是php字符类型是8位的,即可以使用char/string类型来存储字节。fgetc从输入中读取一个字符,然后ord返回一个数字字节值,给定一个字符。
Php 没有字节类型。也许另一种方法是创建一个字节数组来表示您的字节值。