1. 程式人生 > >php方法 隱藏手機號中間四位

php方法 隱藏手機號中間四位

replace post blog 定義函數 col rep substr body 方法

 * */  
//自定義函數手機號隱藏中間四位  
function yc_phone($str){  
    $str=$str;  
    $resstr=substr_replace($str,‘****‘,3,4);  
    return $resstr;  
} 

php方法 隱藏手機號中間四位