Skip to content

Instantly share code, notes, and snippets.

@justinkelly
Created May 3, 2011 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinkelly/953216 to your computer and use it in GitHub Desktop.
Save justinkelly/953216 to your computer and use it in GitHub Desktop.
Remove non-numeric characters from a string.
<?php
/*
Remove non-numeric characters from a string.
*/
function stripNonNumeric($str='') {
return preg_replace('(\D+)', '', $str);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment