Can be used when you want to clean telephone numbers
// test string $str = ' +20 875-458-5555'; // remove all but digits $num = preg_replace('/[^0-9]/', '', $str); // show new string echo $num;
Use as is
Rating: 0 / 5 (0 votes) 1782 views
Want to share your source code? Create your account and join our community!
Comments
Add your comment