我有一个注册表单,只是在提交时向我们发送电子邮件。我可以修剪建议的用户名字段以防止输入多个单词吗?或者也许在提交时自动消除空格以形成一个单词?
答案 0 :(得分:1)
您应该查看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);