php中pack與unpack

來源:互聯網
上載者:User

pack/unpack的摸板字元字元含義

format 參數的可能值:

a - NUL-padded string

A - SPACE-padded string

h - Hex string, low nibble first

H - Hex string, high nibble first

c - signed char

C - unsigned char

s - signed short (always 16 bit, machine byte order)

S - unsigned short (always 16 bit, machine byte order)

n - unsigned short (always 16 bit, big endian byte order)

v - unsigned short (always 16 bit, little endian byte order)

i - signed integer (machine dependent size and byte order)

I - unsigned integer (machine dependent size and byte order)

l - signed long (always 32 bit, machine byte order)

L - unsigned long (always 32 bit, machine byte order)

N - unsigned long (always 32 bit, big endian byte order)

V - unsigned long (always 32 bit, little endian byte order)

f - float (machine dependent size and representation)

d - double (machine dependent size and representation)

x - NUL byte

X - Back up one byte

@ - NUL-fill to absolute position

a一個填充空的位元組串
A一個填充空格的位元組串
b一個位串,在每個位元組裡位的順序都是升序
B一個位串,在每個位元組裡位的順序都是降序
c一個有符號char(8位整數)值
C一個無符號char(8位整數)值;關於Unicode參閱U
d原生格式的雙精確度浮點數
f原生格式的單精確度浮點數
h一個十六進位串,低四位在前
H一個十六進位串,高四位在前
i一個有符號整數值,原生格式
I一個不帶正負號的整數值,原生格式
l一個有符號長整形,總是32位
L一個無符號長整形,總是32位
n一個16位短整形,“網路”位元組序(大頭在前)
N一個32位短整形,“網路”位元組序(大頭在前)
p一個指向空結尾的字串的指標
P一個指向定長字串的指標
q一個有符號四倍(64位整數)值
Q一個無符號四倍(64位整數)值
s一個有符號短整數值,總是16位
S一個無符號短整數值,總是16位,位元組序跟機器晶片有關
u一個無編碼的字串
U一個Unicode字元數字
v一個“VAX”位元組序(小頭在前)的16位短整數
V一個“VAX”位元組序(小頭在前)的32位短整數
w一個BER壓縮的整數
x一個空位元組(向前忽略一個位元組)
X備份一個位元組
Z一個空結束的(和空填充的)位元組串

規則:
1.每個字母后面都可以跟著一個數字,表示count(計數),如果count是一個*表示剩下的所有東西。
2.如果你提供的參數比$format要求的少,pack假設缺的都是空值。如果你提供的參數比$format要求的多,那麼多餘的參數被忽略。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.