pack

(PHP 4, PHP 5, PHP 7)

pack�����ݴ���ɶ������ַ���

˵��

pack ( string $format [, mixed $args [, mixed $... ]] ) : string

����format�����صIJ�������ɶ������ַ�����

���������˼������Perl�����и�ʽ�����루format���Ĺ���ԭ����Perl��ͬ�� ���ǣ�ȱ���˲��ָ�ʽ���룬����Perl��"u"��

ע�⣬�з���ֵ���޷���ֵ֮�������ֻӰ�캯��unpack(), ����Щʹ���з��ź��޷��Ÿ�ʽ����ĵط�pack()����������ͬ�Ľ����

����

format

format�ַ����ɸ�ʽ������ɣ��������һ����ѡ���ظ������� �ظ�����������һ������ֵ����*ֵ���ظ����������ݵ�ĩβ������a, A, h, H��ʽ�����룬�����ظ�����ָ���˸������ݽ��ᱻʹ�ü����ַ���������@,�������ֱ�ʾ����ʣ�����ݵľ��Զ�λ��֮ǰ�����ݽ��ᱻ���ַ�����䣩�����������������ݣ��ظ�����ָ�����Ķ������ݲ������������ɵĶ������ַ����С�

Ŀǰ��ʵ�ֵĸ�ʽ���£�

pack() ��ʽ�ַ�
���� ����
a ��NUL�ֽ�����ַ���
A ��SPACE(�ո�)����ַ���
h ʮ�������ַ�������λ��ǰ
H ʮ�������ַ�������λ��ǰ
c�з����ַ�
C �޷����ַ�
s �з��Ŷ�����(16λ�������ֽ���)
S �޷��Ŷ�����(16λ�������ֽ���)
n �޷��Ŷ�����(16λ������ֽ���)
v �޷��Ŷ�����(16λ��С���ֽ���)
i �з�������(������ش�С�ֽ���)
I �޷�������(������ش�С�ֽ���)
l �з��ų�����(32λ�������ֽ���)
L �޷��ų�����(32λ�������ֽ���)
N �޷��ų�����(32λ������ֽ���)
V �޷��ų�����(32λ��С���ֽ���)
q �з��ų�������(64λ�������ֽ���)
Q �޷��ų�������(64λ�������ֽ���)
J �޷��ų�������(64λ������ֽ���)
P �޷��ų�������(64λ��С���ֽ���)
f �����ȸ�����(������ش�С)
g �����ȸ�����(������ش�С��С���ֽ���)
G �����ȸ�����(������ش�С������ֽ���)
d ˫���ȸ�����(������ش�С)
e ˫���ȸ�����(������ش�С��С���ֽ���)
E ˫���ȸ�����(������ش�С������ֽ���)
x NUL�ֽ�
X �������ֽ�
Z ��NUL�ֽ�����ַ����հ�(PHP 5.5���¼����)
@ NUL��䵽����λ��

args

����ֵ

���ذ������ݵĶ������ַ�����

������־

�汾 ˵��
7.2.0 float �� double ����֧�ִ�Ϻ�С�ˡ�
7.0.15,7.1.1 �����"e","E","g"��"G"����������float��double���ֽ�˳��֧�֡�
5.6.3 �����"q"��"q"��"J"��"P"������֧�ִ���64λ���֡�
5.5.0 "Z"�����������"a"��Ч�Ĺ��ܣ���ʵ��Perl�����ԡ�

����

Example #1 pack() ����

<?php
$binarydata 
pack("nvc*"0x12340x56786566);
?>

The resulting binary string will be 6 bytes long and contain the byte sequence 0x12, 0x34, 0x78, 0x56, 0x41, 0x42.

ע��

Caution

Note that PHP internally stores integer values as signed values of a machine-dependent size (C type long). Integer literals and operations that yield numbers outside the bounds of the integer type will be stored as float. When packing these floats as integers, they are first cast into the integer type. This may or may not result in the desired byte pattern.

The most relevant case is when packing unsigned numbers that would be representable with the integer type if it were unsigned. In systems where the integer type has a 32-bit size, the cast usually results in the same byte pattern as if the integer were unsigned (although this relies on implementation-defined unsigned to signed conversions, as per the C standard). In systems where the integer type has 64-bit size, the float most likely does not have a mantissa large enough to hold the value without loss of precision. If those systems also have a native 64-bit C int type (most UNIX-like systems don't), the only way to use the I pack format in the upper range is to create integer negative values with the same byte representation as the desired unsigned value.

�μ�

  • unpack() - Unpack data from binary string