The pack() function in PHP is a function used to convert data into binary format. Use this function to package data in a specified format to adapt to different application scenarios. This article will introduce the basic usage and common format instructions of the pack() function.
The syntax of the pack() function is:
string pack ( string $format , mixed $args1 [, mixed $... ] )
The first parameter is the format description string for data packaging. The format string can contain one or more format codes. Each format ? corresponds to one parameter, and the final result is a binary string packed in a specific order.
The following are some commonly used format codes:
Format code | Meaning |
---|---|
a | Padding with null bytes, including the last null |
A | Padding with spaces, including the last space |
h | Lowercase letters of hexadecimal |
H | Uppercase letters of hexadecimal |
i | Signed integer, size is 4 bytes |
I | No Signed integer, size is 4 bytes |
l | Signed integer, size is 4 bytes (same as i) |
L | Unsigned integer, size is 4 bytes (same as I) |
n | Same as I, but enforces network byte order |
N | Same as V, but forces network byte order |
V | Unsigned integer, size is 4 bytes |
s | Signed short integer, size is 2 bytes |
S | Unsigned short integer of size 2 bytes |
c | Signed characters, the size is 1 byte |
C | Unsigned characters, the size is 1 byte |
f | Single precision floating point number, size is 4 bytes |
d | Double precision floating point number, size is 8 bytes |
Here is a simple example:
$format = "A5a5a5a5a5"; // 5个空格后面跟5个以null填充的字符 $args = array("Hello", "World", "PHP", "Is", "Fun"); echo bin2hex(pack($format, ...$args)); // 输出 48656c6c6f00576f726c640050485049732046756e
In this example, we use the format codes A
and a
to pack the string, ...$args
The syntax is the variable expansion syntax of PHP 5.6, which is to split the array into multiple parameters and pass them to the function in turn.
Similarly, the pack() function also supports some special format codes. The following is an introduction:
Format code | Meaning |
---|---|
NUL bytes | |
Remove previous character | |
Padding to a specific length |
The above is the detailed content of Let's talk about the basic usage of php pack method. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
