ValidatorUtil.php 282 B

123456789101112131415161718
  1. <?php
  2. namespace App\Libs\Push\HuaWei\Admin\Msg;
  3. class ValidatorUtil
  4. {
  5. public static function validatePattern($pattern, $value)
  6. {
  7. $result = preg_match($pattern, $value);
  8. if (1 == $result) {
  9. return TRUE;
  10. }
  11. return FALSE;
  12. }
  13. }