0

有没有办法用php验证所有国家的电话号码

4

2 回答 2

1

您可以通过使用 preg_match 来实现这一点,我认为不存在任何自动验证

通过使用数据库存储格式,然后检查输入电话号码的格式

int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )

例如。,

<?php
// The "i" after the pattern delimiter indicates a case-insensitive search
if (preg_match("/php/i", "PHP is the web scripting language of choice.")) {
    echo "A match was found.";
} else {
    echo "A match was not found.";
}
?>

看到这个 http://php.net/manual/en/function.preg-match.php

于 2012-04-24T07:17:03.890 回答
0

从以下位置获取有关国家电话号码起始代码的信息:http:
//www.international-dialing-codes.net/
插入数据库,创建数组,进行循环,它将从数据库中获取信息,然后创建 foreach .. 类似那..

于 2012-04-24T07:20:12.303 回答