怎样把单词的第一个字母变成大写?
我有一个单词 default
并且我想要一个 php 函数只将第一个字母大写。我们可以这样做吗?请帮助我,因为我对 php 编码很陌生。
I have a word default
and I want a php function to make only first letter capital. Can we do that. Please help me out as I am very new to php coding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可能需要使用 ucfirst()。
对于多字节字符串,请参阅此代码段。
You may want to use ucfirst().
For multibyte strings, please see this snippet.
ucfirst 将字符串中的第一个字母大写。
ucwords 将字符串中的每个单词大写。
ucfirst capitalizes the first letter in a string.
ucwords capitalizes every word in a string.
你好,Geeta,你可以简单地使用
ucwords()
php 函数将你的单词的每个第一个字母变成大写!希望这会有所帮助!
Hello Geeta you can simply use
ucwords()
php function to make every first letter of your word Upper Cased!Hope this would help!
我认为 https://www.php.net/manual/en/function .ucwords.php 是这里最好的功能:)
I think that https://www.php.net/manual/en/function.ucwords.php is the best function here :)
这是您需要的代码:
This is the code you need: