如何以大写字母回显文本?

发布于 2024-07-25 20:09:48 字数 24 浏览 7 评论 0原文

我想知道如何在 PHP 中使用大写

I want to know how to capitalize in PHP

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鸢与 2024-08-01 20:09:48
echo strtoupper('hello');

strtoupper 将把整个字符串大写。

如果您只对大写第一个字母感兴趣,可以使用 ucfirst:

echo ucfirst('hello!'); //Hello!

如果要将字符串中每个单词的首字母大写,请使用 ucwords

echo ucwords('hello world!'); //Hello World!
echo strtoupper('hello');

strtoupper will capitalize the whole string.

If you're only interested in capitalizing the first letter, you can use ucfirst:

echo ucfirst('hello!'); //Hello!

If you want to capitalize the first letter of each word in a string, use ucwords:

echo ucwords('hello world!'); //Hello World!
鯉魚旗 2024-08-01 20:09:48

strtoupper() 函数是什么您正在寻找。

The strtoupper() function is what you're looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文