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