中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP隱藏手機號碼中間4位的示例

發布時間:2021-02-20 09:14:55 來源:億速云 閱讀:200 作者:小新 欄目:編程語言

這篇文章主要介紹PHP隱藏手機號碼中間4位的示例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

方法演示

1.使用 substr_replace函數

# substr_replace — 替換字符串的子串
# 使用說明
substr_replace ( mixed $string , mixed $replacement , mixed $start , mixed $length = ? ) : mixed
# $string 資源字符串
# $replacement 替換字符
# $start 替換開始位置,如果位負數的時候,將從末尾開始數
# $length 需要替換的長度,如果為負數的時候,也是從$start開始位置替換
# substr_replace() 在字符串 string 的副本中將由 start 和可選的 length 參數限定的子字符串使用 replacement 進行替換。
# 示例
$mobile = '18512341234';
echo substr_replace($mobile, '****', 3, 4);         // 185****1234
# 注意 字符串的開始位置為0
echo substr_replace($mobile, '****', -8, -4);    // 185****1234

2.使用正則表達式

# preg_replace — 執行一個正則表達式的搜索和替換
# 使用說明
preg_replace ( mixed $pattern , mixed $replacement , mixed $subject , int $limit = -1 , int &$count = ? ) : mixed
# 搜索 subject 中匹配 pattern 的部分,以 replacement 進行替換。

# 示例
$pattern = '/(\d{3})\d{4}(\d{4})/';
$new_mobile = preg_replace($pattern, '$1****$2', $mobile);
echo $new_mobile;

3.使用 substr函數

# 函數說明
substr ( string $string , int $start , int $length = ? ) : string
# 返回字符串 string 由 start 和 length 參數指定的子字符串。   
# 同 substr_replace 一樣,start也可以為負數的
# 示例
echo substr($mobile, 0,3) . '****' . substr($mobile, 7,4);
echo substr($mobile, 0,3) . '****' . substr($mobile, -4,4);

以上是“PHP隱藏手機號碼中間4位的示例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

扎赉特旗| 福泉市| 宁海县| 肥东县| 疏附县| 商南县| 大兴区| 竹北市| 林芝县| 赫章县| 南靖县| 叶城县| 沙洋县| 太仆寺旗| 通河县| 金昌市| 蒙阴县| 巴林右旗| 贵州省| 盐山县| 封丘县| 双辽市| 民县| 东乡族自治县| 郯城县| 彝良县| 荔波县| 德钦县| 武胜县| 龙州县| 驻马店市| 荥经县| 陆川县| 东明县| 崇义县| 兴和县| 台南市| 黄平县| 山西省| 博白县| 康平县|