Skip to content

Instantly share code, notes, and snippets.

@codingfox-rus
Last active December 15, 2016 06:22
Show Gist options
  • Save codingfox-rus/15a2edcb85354a713e73 to your computer and use it in GitHub Desktop.
Save codingfox-rus/15a2edcb85354a713e73 to your computer and use it in GitHub Desktop.
Валидация мобильного телефонного номера
<?php
/**
* @param $phone
* @return bool
*/
public function correctPhone($phone)
{
$phone = preg_replace('/[^0-9]/', '', trim($phone));
preg_match('/9[0-9]{9,9}/', $phone, $result);
if ( !empty($result) ) {
return '7' . $result[0];
}
return false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment