PHP Format Phone number method
PHP Format Phone number method
The example in this article describes how PHP formats phone numbers. Share to everyone for your reference. The specific analysis is as follows:
This function is only available for us phones, China phone needs to be modified by itself
?
1 2 3 4 5 6 7 8 9 10 |
function Format_phone ($phone) { $phone = Preg_replace ("/[^0-9]/", "", $phone); if (strlen ($phone) = = 7) Return Preg_replace ("/([0-9]{3}) ([0-9]{4})/", "$1-$2", $phone); ElseIf (strlen ($phone) = = 10) Return Preg_replace ("/([0-9]{3}) ([0-9]{3}) ([0-9]{4})/", "($) $2-$3", $phone); Else return $phone; } |
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/989556.html www.bkjia.com true http://www.bkjia.com/PHPjc/989556.html techarticle PHP Format Phone number method PHP format Phone number method This article describes the PHP format phone number method. Share to everyone for your reference. The specific analysis is as follows: this ...