如何使用PHP将段落中单词的每个第一个字母变成大写字母
我有一个段落,我想使用 PHP 将单词的每个第一个字母变成大写字母。
例如:
converting every first letter into capital letter.
应该转换成
Converting Every First Letter Into Capital Letter.
谢谢
I am having a paragraph and i want to make every first letter of the word into a capital letter using PHP.
ex:
converting every first letter into capital letter.
should convert into
Converting Every First Letter Into Capital Letter.
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果这只是为了演示,您还可以使用CSS:
示例:
请参阅
If this is strictly for presentation, you can also use CSS for this:
Example:
See
有一个函数可以实现这一点 -
ucwords()
:There's a function for that —
ucwords()
:要转换每个第一个字母大写,请使用以下代码
Ex)
输出:
将每个第一个字母转换为大写字母。
要转换句子中的第一个字母大写,请使用以下代码
例如)
输出:
将每个第一个字母转换为大写字母。
要转换所有句子中的第一个字母大写,请使用以下代码。
例如)
输出:
这是第一条消息。这是第二条消息。这是第三条消息!希望这有帮助。
For converting every first letter capital use the below code
Ex)
Output:
Converting Every First Letter Into Capital Letter.
For converting the first letter capital in a sentence use the below code
Ex)
Output:
Converting every first letter into capital letter.
For converting the first letter capital in all sentence use the below code.
Ex)
Output:
This is a first message. This is a seconde message. This is a third message! Hope this helps.
Nithin Raja,你的榜样很棒!
下面的代码调整为>= PHP7
谢谢!
Nithin Raja, your example is great!
Below the code adjusted for >= PHP7
Thanks!