当前位置: 首页>>代码示例>>PHP>>正文


PHP IP::parseRange6方法代码示例

本文整理汇总了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);
                 }
             }
         }
     }
 }
开发者ID:ErdemA,项目名称:wikihow,代码行数:42,代码来源:CheckUser_body.php


注:本文中的IP::parseRange6方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。