当前位置:Gxlcms > PHP教程 > phpip地址转换整数,整数转换地址

phpip地址转换整数,整数转换地址

时间:2021-07-01 10:21:17 帮助过:23人阅读

$ipArr    = explode('.',$_SERVER['REMOTE_ADDR']);



     $ipVal = $ipArr[0] * 0x1000000
            + $ipArr[1] * 0x10000
            + $ipArr[2] * 0x100
            + $ipArr[3]
            ;

        echo$ipVal.'
'
; $ipArr = array(0 => floor( $ipVal/ 0x1000000) ); $ipVint = $ipVal-($ipArr[0]*0x1000000); // for clarity$ipArr[1] = ($ipVint & 0xFF0000) >> 16; $ipArr[2] = ($ipVint & 0xFF00 ) >> 8; $ipArr[3] = $ipVint & 0xFF; $ipDotted = implode('.', $ipArr); echo$ipDotted; $ipArr = explode('.',$_SERVER['REMOTE_ADDR']); $ip = $ipArr[0] * 0x1000000 + $ipArr[1] * 0x10000 + $ipArr[2] * 0x100 + $ipArr[3] ; ?>This can be written in a bit more efficient way: $ipArr = explode('.',$_SERVER['REMOTE_ADDR']); $ip = $ipArr[0]<<24 + $ipArr[1]<<16 + $ipArr[2] <<8 + $ipArr[3] ; ?>shift is more cheaper.

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了php ip地址转换整数,整数转换地址,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行