在python中,您可以将字符串编码为
encoded = text.encode('hex')
text = encoded.decode('hex')
php中有哪些相应的功能?
答案 0 :(得分:3)
你可以使用
$data = bin2hex("your string");
$string = hex2bin($data);
或
$data = implode('', unpack("H*", "your string"));
$string = pack("H*", $data);