本文整理汇总了PHP中IP::parseRange6方法的典型用法代码示例。如果您正苦于以下问题:PHP IP::parseRange6方法的具体用法?PHP IP::parseRange6怎么用?PHP IP::parseRange6使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IP
的用法示例。
在下文中一共展示了IP::parseRange6方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getIpConds
/**
* @param Database $db
* @param string $ip
* @param string $xfor
* @return array conditions
*/
function getIpConds($db, $ip, $xfor = false)
{
$type = $xfor ? 'xff' : 'ip';
// IPv4 CIDR, 16-32 bits
if (preg_match('#^(\\d+\\.\\d+\\.\\d+\\.\\d+)/(\\d+)$#', $ip, $matches)) {
if ($matches[2] < 16 || $matches[2] > 32) {
return array('cuc_' . $type . '_hex' => -1);
}
list($start, $end) = IP::parseRange($ip);
return array('cuc_' . $type . '_hex BETWEEN ' . $db->addQuotes($start) . ' AND ' . $db->addQuotes($end));
} else {
if (preg_match('#^\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}/(\\d+)$#', $ip, $matches)) {
// IPv6 CIDR, 64-128 bits
if ($matches[1] < 64 || $matches[1] > 128) {
return array('cuc_' . $type . '_hex' => -1);
}
list($start, $end) = IP::parseRange6($ip);
return array('cuc_' . $type . '_hex BETWEEN ' . $db->addQuotes($start) . ' AND ' . $db->addQuotes($end));
} else {
if (preg_match('#^(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)$#', $ip)) {
// 32 bit IPv4
$ip_hex = IP::toHex($ip);
return array('cuc_' . $type . '_hex' => $ip_hex);
} else {
if (preg_match('#^\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}:\\w{1,4}$#', $ip)) {
// 128 bit IPv6
$ip_hex = IP::toHex($ip);
return array('cuc_' . $type . '_hex' => $ip_hex);
} else {
// throw away this query, incomplete IP, these don't get through the entry point anyway
return array('cuc_' . $type . '_hex' => -1);
}
}
}
}
}