: :其他软件 2020-10-10 21:48:09
一、每个单词的首字母转化为大写
$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()
TAG: PHP,字符串,首字母,大小写,转换
10-13VC++繁、简转换程序
10-13进制转换.cpp
10-12提取字符串中的整数
10-10去除字符串中特定字符
10-10字符串倒序
10-09英文字母大小写转换
10-09pic到tif图像格式的转换
10-08BinCalc64 64位进制转换工具
10-11Excel表格数据转换成分组堆积图
10-04excel表格中负数的金额转换成大写
10-03wps图片中文字转换成文字
08-31word文档将数字全角转换为半角
08-31excel将数字转换为汉字格式
08-28PPT做好的幻灯片转换成高清视频格式
08-27用excel检查两个字符串是否相同
08-27扫描A4纸张图片转换PDF压缩大小