Bu iki fonksiyonları için herhangi bir PHP benzerleri var mı? Ben aramaya çalıştım ama hiçbir şey göremiyordu.
Teşekkürler.
Sen ip2long()
and long2ip()
a> istiyorum.
$ip = '192.0.34.166';
printf("%u\n", ip2long($ip)); // 3221234342
Bu kılavuzda belirttiği gibi:
Note: Because PHP's integer type is signed, and many IP addresses will result in negative integers, you need to use the "%u" formatter of sprintf() or printf() to get the string representation of the unsigned IP address.
Burada PHP alternatif fonksiyonları (programa basit kopyala / yapıştır) -
function inet_aton($ip)
{
$ip = trim($ip);
if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) return 0;
return sprintf("%u", ip2long($ip));
}
function inet_ntoa($num)
{
$num = trim($num);
if ($num == "0") return "0.0.0.0";
return long2ip(-(4294967295 - ($num - 1)));
}