Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 PHP 创建一个表单。我希望所有的表格都用大写字母填写。无论用户的大写锁定是打开还是关闭,它都应该隐式打开。并且数据库中的数据也应以大写形式保存。但只是对于电子邮件字段大写锁定应该关闭。也就是说,无论用户的大写锁定是打开还是关闭,电子邮件都应该填写在运行案例中。有没有办法这样做。请回复
为什么要这样做是另一回事?
但是在 PHP 中
$str = "A string IN mixed CAse" $str = strtoupper ($str); echo $str;
见strtoupper