首字母变大写:ucwords()
代码如下 | 复制代码 |
<?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; |
第一个词首字母变大写:ucfirst()
代码如下 | 复制代码 |
<?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; |
第一个词首字母小写lcfirst()
代码如下 | 复制代码 |
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; |
时间: 2024-09-25 01:32:39