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

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

WBOY
Release: 2016-06-13 13:05:17
Original
1375 people have browsed it

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;
?>

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template