PHP将字符串首字母大小写转换
From: https://www.cnblogs.com/52php/p/5675284.html
每個單詞的首字母轉換為大寫:ucwords()
| 1 2 3 4 5 6 7 8 | <?php $foo = 'hello world!'; $foo = ucwords($foo);???????????? // Hello World! ? $bar = 'HELLO WORLD!'; $bar = ucwords($bar);???????????? // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World! ?> |
?
第一個單詞首字母變大寫:ucfirst()
| 1 2 3 4 5 6 7 8 | <?php $foo = 'hello world!'; $foo = ucfirst($foo);???????????? // Hello world! ? $bar = 'HELLO WORLD!'; $bar = ucfirst($bar);???????????? // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ?> |
?
第一個單詞首字母變小寫:lcfirst()
| 1 2 3 4 5 6 7 8 | <?php $foo = 'HelloWorld'; $foo = lcfirst($foo);???????????? // helloWorld ? $bar = 'HELLO WORLD!'; $bar = lcfirst($bar);???????????? // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?> |
?
所有 字母變大寫:strtoupper()
所有 字母變小寫:strtolower()
總結
以上是生活随笔為你收集整理的PHP将字符串首字母大小写转换的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [华清远见]FPGA公益培训
- 下一篇: Makefile中自定义函数的调用