Home >Backend Development >PHP Tutorial > php高速计算子网掩码的前缀长度

php高速计算子网掩码的前缀长度

WBOY
WBOYOriginal
2016-06-13 13:05:171390browse

php快速计算子网掩码的前缀长度

$len=0;
$netmask="255.255.255.0";
$split_mask=explode('.',$netmask);
foreach($split_mask as $v)
{
??? $len+=8-log(256-$v,2);
}
echo $len;
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn