php编程里强制转换大小写字母怎么做
来源:爱站网时间:2022-04-02编辑:网友分享
很多小伙伴都想知道如何在php编程里强制转换大小写字母,关于这方面的内容,爱站技术频道小编整理了一些相关资料给大家伙参考,有需要的话可以前来阅读。
strtoupper()
函数把字符串转换为大写。
strtolower()
函数把字符串转换为小写。
每个单词的首字母转换为大写:ucwords()
$foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World!
第一个单词首字母变大写:ucfirst()
$foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world!
第一个单词首字母变小写:lcfirst()
$foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
php编程里强制转换大小写字母怎么做想必朋友们都看的明明白白了吧!关注爱站技术频道网站,里面有很多精彩的PHP编程文章内容,喜欢就别错过了。
上一篇:php怎么读取大文件数据
下一篇:php中判断大小写的方法