下你所需,载你所想!
IT技术源码资料下载网站

PHP将字符串首字母大小写转换

:其他软件 2020-10-10 21:48:09

PHP将字符串首字母大小写转换

一、每个单词的首字母转化为大写
$foo = 'hello world!';
$foo = ucwords($foo); // Hello World!
$bar = 'HELLO WORLD!';
$bar = ucwords($bar); // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>
二、第一个单词的首字母变大写
$foo = 'hello world!';
$foo = ucfirst($foo); // Hello world!
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar); // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
三、第一个单词的首字母变小写
$foo = 'HelloWorld';
$foo = lcfirst($foo); // helloWorld
$bar = 'HELLO WORLD!';
$bar = lcfirst($bar); // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>
四、拓展
所有 字母变大写:strtoupper()
所有 字母变小写:strtolower()