将电话号码转换为格式标准
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将电话号码转换为格式标准相关的知识,希望对你有一定的参考价值。
Converts phone numbers to the formatting standard
/** * Converts phone numbers to the formatting standard * * @param String $num A unformatted phone number * @return String Returns the formatted phone number */ function formatPhone($num) { if($len == 7) elseif($len == 10) return $num; } // echo formatPhone('1 208 - 386 2934'); // will print: (208) 386-2934 </code>
以上是关于将电话号码转换为格式标准的主要内容,如果未能解决你的问题,请参考以下文章