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

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值