Published in: PHP
function format_phone($phone) { else return $phone; }
Comments
Subscribe to comments
You need to login to post a comment.
Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.
tylerhall on 12/31/69
22 people have marked this snippet as a favorite
xhtmled
luxuryluke
mate
jkochis
shamrog12
irdial
blakeb
dmarten
demods
hudge
benrasmusen
marteki
bioascii
SpinZ
dyesin
nerdfiles
coylOne
blackabee
section31
jamesming
mrjthethird
elgermano
Published in: PHP
function format_phone($phone) { else return $phone; }
Subscribe to comments
You need to login to post a comment.
Should be noted that this is US based 7 or 10 digit dialing, and that it is NOT error-proof. If the function cannot figure out what to do with the number, it will have stripped all the non-numeric digits in the return value.
Check out an "updated" version of this function: http://snipplr.com/view/3680/format-phone/