检查有效的印度移动电话号码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查有效的印度移动电话号码相关的知识,希望对你有一定的参考价值。
To check if number is valid Indian Mobile Number.
// 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; }
以上是关于检查有效的印度移动电话号码的主要内容,如果未能解决你的问题,请参考以下文章