php如何将ip点分十进制转换成16进制

2025-03-23 16:08:18
推荐回答(1个)
回答1:

$ip = '192.168.0.1';
$long = ip2long($ip);
echo $hex = dechex($long);