Using PHP, how can I verify if a phone # is well formed?
It seems easiest to simply strip all non-numeric data, leaving only the numbers. Then to check if 10 digits exist.
Is this the best and easiest way?
|
Using PHP, how can I verify if a phone # is well formed? It seems easiest to simply strip all non-numeric data, leaving only the numbers. Then to check if 10 digits exist. Is this the best and easiest way? |
|||||||||
|
|
The best? No. Issues I see with this approach:
Good enough? Quite possibly, but that's up to you and your app. |
|||||||||||||||
|
|
You can use a regex for it:
Haven't tested the regex, so it may not be 100% correct. |
|||||
|
|
Checking for 10 digits after stripping will check the syntax but won't check the validity. For that you'd need to determine what valid numbers are available in the region/country and probably write a regex to match the patterns. |
|||
|
|
The problem with validating/filtering data like this usually comes down the the answer to this question: "How strict do I want to be?" which then devolves into a series of "feature" questions
Depending on your business rules, the answers to these questions can vary. But to be the most flexible, I recommend 3 fields to take a phone number
All 3 fields can be programmatically limited/filters for numeric values only. You can then combine them before storing into some parse-able format, or store each value individually. |
|||||
|
|
Answering if something is "the best" thing to do, is nearly impossible (unless you're the one answering your own question). The way you propose it, stripping all non-digits and then check if there are 10 digits, might result in unwanted behaviour for a string like:
since stripping all non-digits will result in the string |
|||
|
|
What format you need? You can use regular expressions to this. |
|||
|
|