|
【造成原因】: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”
即,printf( '%u', ip2long( 'IP地址' ) );
或者將其先轉(zhuǎn)換為二進(jìn)制然后在轉(zhuǎn)換為十進(jìn)制,bindec( decbin( ip2long( 'IP地址' ) ) );
【測試】
$strIp = '182.118.0.0';
echo ip2long($strIp); //此時輸出的-1233780736
echo '<br/>';
echo bindec( decbin( ip2long( $strIp ) ) ); // 輸出3061186560,與MySQL函數(shù)輸出一致~
【注】:
number bindec ( string $binary_string ); //二進(jìn)制轉(zhuǎn)換為十進(jìn)制
string decbin ( int $number ); //十進(jìn)制轉(zhuǎn)換為二進(jìn)制
php技術(shù):探討PHP函數(shù)ip2long轉(zhuǎn)換IP時數(shù)值太大產(chǎn)生負(fù)數(shù)的解決方法,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。