assume that the string is
abc@gmail.com
-
Can
- realize the name of the string before catching @? (abc) no matter how long. Can
- automatically add a
abc
@gmail.com
assume that the string is
abc@gmail.com
before each string @? It will not replace any Kansi. abc
@gmail.com
$email = 'abc@gmail.com';
$email = str_replace("@","<br>@",$email);
$email = 'abc@gmail.com';
$arr = explode ("@", $email);
echo $arr [0], "
",' @'. $arr
Previous: How to set Referer in axios of vue