当前位置:Gxlcms > PHP教程 > PHP英文字母大小写转换函数

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

时间:2021-07-01 10:21:17 帮助过:15人阅读

例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,各有所用。

人气教程排行