Files
pgserver3.0/pgserver/application/lib/HexUtil.php
annnj-company 130c1026c4 first commit
2026-04-17 18:29:53 +08:00

26 lines
510 B
PHP

<?php
namespace app\lib;
/**
* Hex工具类
*/
class HexUtil {
/**
* 16进制字符串转字节数组
* @param string $hex 16进制字符串
* @return string 字节数组
*/
public static function decodeHex($hex) {
return hex2bin($hex);
}
/**
* 字节数组转16进制字符串
* @param string $bytes 字节数组
* @return string 16进制字符串
*/
public static function encodeHexStr($bytes) {
return bin2hex($bytes);
}
}