IRegex.php 73 B

12345
  1. <?php
  2. interface IRegex{
  3. public static function match($regex, $data);
  4. }