decode hex code php

在 PHP 中,可以使用 hex2bin 函数将 16 进制字符串解码为二进制字符串。例如:

h e x = 68656 c 6 c 6 f ; hex = '68656c6c6f';

// $binary 现在是 "hello" 的二进制形式。

  •