Skip to content

Instantly share code, notes, and snippets.

@RiodeJaneiroo
Last active November 17, 2019 08:49
Show Gist options
  • Save RiodeJaneiroo/73df53957b0be62d762166206a18a618 to your computer and use it in GitHub Desktop.
Save RiodeJaneiroo/73df53957b0be62d762166206a18a618 to your computer and use it in GitHub Desktop.
[Replace number phone] #php #replace #phone #wordpress
function cleanNumberPhone($string) {
$newString = preg_replace('~\D+~','', $string);
return $newString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment