/ Published in: PHP
Formats a phone number as (xxx) xxx-xxxx or xxx-xxxx depending on the length.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Formats a phone number as (xxx) xxx-xxxx or xxx-xxxx depending on the length. function format_phone($phone) { else return $phone; }