/**
  * {@inheritdoc}
  */
 public static function match($entry)
 {
     if (!strpos($entry, '*')) {
         return false;
     }
     $entry = str_replace('*', 12, $entry);
     return IPV4::match(trim($entry));
 }
Exemple #2
0
 /**
  * {@inheritdoc}
  */
 public static function match($entry)
 {
     return (bool) (!IPV4::match(trim($entry)) && AbstractIP::match(trim($entry)));
 }