在 PHP 中设置电话号码的格式
2022-08-30 07:15:27
我正在开发一个SMS应用程序,需要能够将发件人的电话号码从+ 11234567890转换为123-456-7890,以便将其与MySQL数据库中的记录进行比较。
这些数字以后一种格式存储,以便在网站上的其他地方使用,我宁愿不改变该格式,因为它需要修改大量代码。
我该如何使用 PHP?
谢谢!
我正在开发一个SMS应用程序,需要能够将发件人的电话号码从+ 11234567890转换为123-456-7890,以便将其与MySQL数据库中的记录进行比较。
这些数字以后一种格式存储,以便在网站上的其他地方使用,我宁愿不改变该格式,因为它需要修改大量代码。
我该如何使用 PHP?
谢谢!
这是一个美国电话格式化程序,适用于比任何当前答案更多的数字版本。
$numbers = explode("\n", '(111) 222-3333
((111) 222-3333
1112223333
111 222-3333
111-222-3333
(111)2223333
+11234567890
1-8002353551
123-456-7890 -Hello!
+1 - 1234567890
');
foreach($numbers as $number)
{
print preg_replace('~.*(\d{3})[^\d]{0,7}(\d{3})[^\d]{0,7}(\d{4}).*~', '($1) $2-$3', $number). "\n";
}
以下是正则表达式的细分:
Cell: +1 999-(555 0001)
.* zero or more of anything "Cell: +1 "
(\d{3}) three digits "999"
[^\d]{0,7} zero or up to 7 of something not a digit "-("
(\d{3}) three digits "555"
[^\d]{0,7} zero or up to 7 of something not a digit " "
(\d{4}) four digits "0001"
.* zero or more of anything ")"
更新时间:2015 年 3 月 11 日,可使用而不是{0,7}
{,7}
$data = '+11234567890';
if( preg_match( '/^\+\d(\d{3})(\d{3})(\d{4})$/', $data, $matches ) )
{
$result = $matches[1] . '-' .$matches[2] . '-' . $matches[3];
return $result;
}