💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## ucfirst 将字符串的首字母转换为大写 将 str 的首字符(如果首字符是字母)转换为大写字母,并返回这个字符串。 ~~~ string ucfirst ( string $str ) ~~~ **eg** ~~~ <?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ?> ~~~ ## lcfirst使一个字符串的第一个字符小写 **eg** ~~~ <?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?> ~~~