PluginProbe
The WP Remote WordPress Plugin / 5.25
The WP Remote WordPress Plugin v5.25
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
wpremote / helper.php

helper.php in The WP Remote WordPress Plugin 5.25, at helper.php

12 lines 324 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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;