Home  >  Article  >  Backend Development  >  How PHP handles binary data

How PHP handles binary data

*文
*文Original
2018-01-02 11:41:047891browse

How does PHP handle binary data? Today I will bring you an implementation method for processing binary data in PHP. Share it with everyone and give it as a reference. I hope to be helpful.

PHP needs to use pack() and unpack() to process binary data.

pack() is used to convert data into binary data. The usage method is as follows:

pack("LL", 0 ,1);

pack(“C”, a);

unpack() can parse binary data into a relational array. It accepts 2 parameters and is used as follows:

$arr ​​= unpack(“Chead”, $binstream); //Read the first byte

$arr ​​= unpack(“Chead/C3string/C4number”, $binstream); // Read 8 bytes, which can be separated by slashes

The first parameter table of the pack() and unpack() functions is as follows

■a: NULL-filled byte string

■A: Space-filled byte string

■h: Hexadecimal number, low nibble first

■ H: Hexadecimal number, high nibble first

■c: Signed character

■C: Unsigned character

■s: Signed short (always 16 bits, machine byte order)

■S: Unsigned short (always 16 bits, machine byte order)

#■n: Unsigned short (always 16 bits, big-endian)

■v: Unsigned short (always 16 bit, little endian)

■I: signed integer (machine dependent size and endianness)

■I: unsigned integer (machine dependent Relevant size and endianness)

■l: signed long (always 32 bits, machine endianness)

■L: unsigned long Integer type (always 32 bits, machine byte order)

■N: Unsigned long integer type (always 32 bits, big endian byte order)

■V: Unsigned long (always 32 bits, little endian)

■f: Floating point (machine dependent size and representation)

■d: Double (machine dependent size and representation)

■x: Null byte

■X: Go back one byte

■@: Fill absolute positions with NULL

Related recommendations:

Some neglected PHP functions (organized)

php Detailed explanation of file reading series methods

php File splitting and merging (resumable upload at breakpoints )

The above is the detailed content of How PHP handles binary data. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn