php bin2hex(),PHP bin2hex() 函数 pack() 函数
bin2hex() 函數(shù)
bin2hex() 函數(shù)把 ASCII 字符的字符串轉(zhuǎn)換為十六進(jìn)制值。字符串可通過使用 pack() 函數(shù)再轉(zhuǎn)換回去。
語法
bin2hex(string)
string必需。要轉(zhuǎn)換的字符串。
示例一
把 "Shanghai" 轉(zhuǎn)換為十六進(jìn)制值
$str = bin2hex("Shanghai");
echo($str); // 5368616e67686169
?>
示例二
把一個字符串值從二進(jìn)制轉(zhuǎn)換為十六進(jìn)制,再轉(zhuǎn)換回去
$str = "Shanghai";
echo bin2hex($str) . "
"; // 5368616e67686169
echo pack("H*",bin2hex($str)) . "
"; // Shanghai
// H的意思 Hex string, high nibble first 轉(zhuǎn)換成字符串,大寫第一個字母
?>
pack() 函數(shù)
pack() 函數(shù)把數(shù)據(jù)裝入一個二進(jìn)制字符串。
語法
pack(format,args+)
format必需。規(guī)定在包裝數(shù)據(jù)時所使用的格式。
args+可選。規(guī)定被包裝的一個或多個參數(shù)。
format 參數(shù)的可能值:
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
示例一
echo pack("C3",80,72,80); // PHP
?>
示例二
echo pack("C*",80,72,80); // PHP
?>
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎勵來咯,堅持創(chuàng)作打卡瓜分現(xiàn)金大獎總結(jié)
以上是生活随笔為你收集整理的php bin2hex(),PHP bin2hex() 函数 pack() 函数的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 苹果五代蓝牙耳机使用说明(苹果四代蓝牙耳
- 下一篇: oracle dbstart,dbsta