将邮箱的某一段替换为*

WBOY
Release: 2016-06-23 14:00:35
Original
1871 people have browsed it

将邮箱地址的第3 位到'@'之间的字符串替换为符号'*'   谢谢


回复讨论(解决方案)

echo preg_replace('/(?<=.{3}).+@/', '*@', 'username@mail.net');
Copy after login
use*@mail.net

$str ="12q2345qqqq667@qq.com";$sub = substr($str, 2,strpos($str,'@') -2);$len = strlen($sub);$replaceStr = str_repeat('*',$len);$newStr = str_replace($sub, $replaceStr, $str);var_dump($newStr);
Copy after login

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!