标签:大写 deb 大小写 first 英文 tle 转换 代码 content
每个单词的首字母转换为大写:ucwords()
$bar = ‘HELLO WORLD!‘;
$bar = ucwords($bar); // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>
第一个单词首字母变大写:ucfirst()
$bar = ‘HELLO WORLD!‘;
$bar = ucfirst($bar); // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
第一个单词首字母变小写:lcfirst()
$bar = ‘HELLO WORLD!‘;
$bar = lcfirst($bar); // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>
所有字母变大写:strtoupper()
所有字母变小写:strtolower()
标签:大写 deb 大小写 first 英文 tle 转换 代码 content
原文地址:http://www.cnblogs.com/sunjinxiu/p/6871720.html