首页 > 后端开发 > php教程 > PHP英文字母大小写转换函数

PHP英文字母大小写转换函数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2016-07-25 09:13:10
原创
1054 人浏览过

例1,每个单词的首字母转换为大写:ucwords()

  1. $foo = 'hello world!';
  2. $foo = ucwords($foo); // Hello World!
  3. $bar = 'HELLO WORLD!';
  4. $bar = ucwords($bar); // HELLO WORLD!
  5. $bar = ucwords(strtolower($bar)); // Hello World!
  6. ?>
复制代码

例2,第一个单词首字母变大写:ucfirst()

  1. $foo = 'hello world!';
  2. $foo = ucfirst($foo); // Hello world!
  3. $bar = 'HELLO WORLD!';
  4. $bar = ucfirst($bar); // HELLO WORLD!
  5. $bar = ucfirst(strtolower($bar)); // Hello world!
  6. ?>
复制代码

例3,第一个单词首字母变小写:lcfirst()

  1. $foo = 'HelloWorld';
  2. $foo = lcfirst($foo); // helloWorld
  3. $bar = 'HELLO WORLD!';
  4. $bar = lcfirst($bar); // hELLO WORLD!
  5. $bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
  6. ?>
  7. 所有字母变大写:strtoupper()
  8. 所有字母变小写:strtolower()
复制代码

以上共介绍了五个英文字母大小写转换函数的函数,分别为ucwords、ucfirst、lcfirst、strtoupper、strtolower,各有所用。



来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板