Home  >  Article  >  Backend Development  >  How to implement replacement phone calls in php regular code

How to implement replacement phone calls in php regular code

藏色散人
藏色散人Original
2021-12-27 10:49:432161browse

php正则实现替换电话的方法:1、创建一个PHP示例文件;2、通过“preg_replace($pattern, $replacement,$str);”替换电话中间四位数字即可。

How to implement replacement phone calls in php regular code

本文操作环境:Windows7系统,PHP7.1版,Dell G3电脑。

php正则怎么实现替换电话?

php手机号正则替换中间四位

php手机号正则替换中间四位代码如下:

$str = '13525462555';
$pattern = '/(\d{3})(\d{4})(\d{4})/i';
$replacement = '$1****$3';
$resstr = preg_replace($pattern, $replacement,$str);
echo $resstr

效果如下:

183****3322

推荐学习:《PHP视频教程

The above is the detailed content of How to implement replacement phone calls in php regular code. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn