Skip to content

Instantly share code, notes, and snippets.

@ocmca
Last active April 3, 2023 17:06
Show Gist options
  • Save ocmca/f079d0d3abf73bba9653 to your computer and use it in GitHub Desktop.
Save ocmca/f079d0d3abf73bba9653 to your computer and use it in GitHub Desktop.
returns a hyphenated creditcard number
// returns a hyphenated creditcard number
function creditCardFilter($str){
$new = str_replace('/\D+/g','',$str);
return chunk_split($new,4,'-');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment