bin2hex / hex2bin 字符串-16进制
最后更新于:2022-04-02 02:29:42
[TOC]
## bin2hex / hex2bin 字符串,16进制相互转换
```
echo bin2hex('hello word') .PHP_EOL; // a
echo hex2bin('68656c6c6f20776f7264') .PHP_EOL; // hello wo
echo bin2hex('你好世界') .PHP_EOL; // e4bda0e5a5bde4b896e7958c
echo hex2bin('e4bda0e5a5bde4b896e7958c') .PHP_EOL; // 你好世界
```
';