コード例 #1
0
 public function match($value)
 {
     try {
         $address = \IpUtils\Factory::getAddress($value);
         return $this->_subnet->matches($address);
     } catch (\Exception $e) {
         unset($e);
         return false;
     }
 }
コード例 #2
0
ファイル: IPv4.php プロジェクト: skosm/LaraShop
 /**
  * check whether the address matches a given pattern/range
  *
  * @param  ExpressionInterface $expression
  * @return boolean
  */
 public function matches(ExpressionInterface $expression)
 {
     return $expression->matches($this);
 }