我有一个注册表格,提交后只会向我们发送电子邮件。我可以修剪建议的用户名字段以防止输入多个单词吗?还是在提交时自动消除空格以形成一个单词?
最佳答案
您应该研究preg_replace($patterns, $replacements, $string);
的情况:
// \s+ means 1 or more whitespace characters.
// '' means that the whitespace will be replaced by emptiness.
// so this should return a string which replaces all whitespace with nothing
preg_replace("#\s+#g", '', $string);