国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php格式化電話號(hào)碼的方法

Original 2017-02-04 09:38:02 273
abstract:本文實(shí)例講述了php格式化電話號(hào)碼的方法。分享給大家供大家參考。具體分析如下:這個(gè)函數(shù)只適用于美國(guó)電話,中國(guó)電話需要自己修改一下function format_phone($phone) {  $phone = preg_replace("/[^0-9]/", "", $phone);  

本文實(shí)例講述了php格式化電話號(hào)碼的方法。分享給大家供大家參考。具體分析如下:

這個(gè)函數(shù)只適用于美國(guó)電話,中國(guó)電話需要自己修改一下

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})/","($1) $2-$3",$phone);
 else
  return $phone;
}

更多關(guān)于php格式化電話號(hào)碼的方法請(qǐng)關(guān)注PHP中文網(wǎng)(m.miracleart.cn)其他文章!   


Release Notes

Popular Entries