Skip to content

Instantly share code, notes, and snippets.

@DragonBe
Created March 15, 2012 01: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 DragonBe/2040933 to your computer and use it in GitHub Desktop.
Save DragonBe/2040933 to your computer and use it in GitHub Desktop.
Simple filtering of phone numbers
````php
<?php
$phoneNumber = '(202) 555-2041';
$filterPhone = preg_repace('/[^0-9]+/','', $phoneNumber);
````
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment