Implementation method of PHP processing binary data, php processing binary data
The implementation method of PHP processing binary data, PHP processing binary data
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, separated by slashes
The first parameter list of pack() and unpack() functions is as follows
■a: NULL padded 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 bits, little endian)
■I: Signed integer (machine dependent size and endianness)
■I: unsigned integer (machine dependent size and endianness)
l: signed long (always 32 bits, machine byte order)
■L: unsigned long (always 32 bits, machine byte order)
■N: unsigned long (always 32 bits, big-endian)
■V: unsigned long (always 32 bits, little endian)
■f: floating point number (machine dependent size and representation)
■d: double (machine dependent size and representation)
■x: null byte
■X: Go back one byte
■@: Fill absolute position with NULL
The above implementation method of processing binary data in PHP is all the content shared by the editor. I hope it can give you a reference, and I also hope that everyone will support Bangkejia.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.