| 1 |
<?php |
| 2 |
|
| 3 |
if (!class_exists('WPRHelper')) : |
| 4 |
class WPRHelper { |
| 5 |
public static function safePregMatch($pattern, $subject, &$matches = null, $flags = 0, $offset = 0) { |
| 6 |
if (!is_string($pattern) || !is_string($subject)) { |
| 7 |
return false; |
| 8 |
} |
| 9 |
return preg_match($pattern, $subject, $matches, $flags, $offset); |
| 10 |
} |
| 11 |
} |
| 12 |
endif; |