标签: php
我希望当用户在用户名字段中输入{/ 1}}的用户名时,我的my username is代码会将其更改为php。这个动作怎么可能?
my username is
php
答案 0 :(得分:1)
你可以通过两种方式实现这一目标。
使用str_replace的第一种方法
$string = str_replace(' ', '', $string);
使用preg_replace的第二种方法
$string = preg_replace('/\s+/', '', $string);