Skip to content

Instantly share code, notes, and snippets.

@edsonmsantos
Created February 4, 2021 13:16
Show Gist options
  • Save edsonmsantos/fcfff014b137a3dc50a805c1d39d660b to your computer and use it in GitHub Desktop.
Save edsonmsantos/fcfff014b137a3dc50a805c1d39d660b to your computer and use it in GitHub Desktop.
[Somente números]
function numbersOnly($number) {
return preg_replace("/[^0-9]/", "", $number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment