VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP英文字母大小写转换函数小结

这篇文章主要介绍了几个PHP英文字母大小写转换函数,分为首字母大小写转换和所有字母大小写转换,需要的朋友可以参考下。

每个单词的首字母转换为大写:ucwords(),代码如下:

  1. <?php 
  2. $foo = 'hello world!'
  3. $foo = ucwords($foo);             // Hello World! 
  4. $bar = 'HELLO WORLD!'
  5. $bar = ucwords($bar);             // HELLO WORLD! 
  6. $bar = ucwords(strtolower($bar)); // Hello World! 
  7. ?> 

第一个单词首字母变大写:ucfirst(),代码如下:

  1. <?php 
  2. $foo = 'hello world!'
  3. $foo = ucfirst($foo);             // Hello world! 
  4. $bar = 'HELLO WORLD!'
  5. $bar = ucfirst($bar);             // HELLO WORLD! 
  6. $bar = ucfirst(strtolower($bar)); // Hello world! 
  7. ?> 

第一个单词首字母变小写:lcfirst(),代码如下:

  1. <?php 
  2. $foo = 'HelloWorld'
  3. $foo = lcfirst($foo);             // helloWorld 
  4. $bar = 'HELLO WORLD!'
  5. $bar = lcfirst($bar);             // hELLO WORLD! 
  6. $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! 
  7. ?> 

所有字母变大写:strtoupper()

所有字母变小写:strtolower()

出处:http://www.phpfensi.com/php/20201125/13492.html

 


相关教程