Skip to content

Instantly share code, notes, and snippets.

@Pahom-ka
Created February 15, 2024 07:07
Show Gist options
  • Save Pahom-ka/c4c4f632ba4e6b48ca41711dc7f3576c to your computer and use it in GitHub Desktop.
Save Pahom-ka/c4c4f632ba4e6b48ca41711dc7f3576c to your computer and use it in GitHub Desktop.
modx formit russian phone validator for formit
<?php
$success = false;
if (preg_match('/^(\+?7|8)\s?(\(\d{3,5}\)|\d{1,3})\s?\d{1,3}[-\s]?\d{1,3}[-\s]?\d{1,3}$/', $value)) {
$success = true;
} else {
$validator->addError($key, 'Неверный формат номера телефона!');
}
return $success;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment