/ Published in: PHP
URL: http://dak9.com
To check if number is valid Indian Mobile Number.
Expand |
Embed | Plain Text
// PHP Function below can be used to check // if a given number is valid Indian mobile number or not. function is_mobile($number) { $result = true; // unless prooved otherwise, mobile number is valid. // Strip out non digits. // first digit should be greater then 6. // Should be of exactl ten digits. return $result; }
You need to login to post a comment.
