码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-05-18 11:38:32      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:大写   deb   大小写   first   英文   tle   转换   代码   content   

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

 代码如下:
<?php
$foo = ‘hello world!‘;
$foo = ucwords($foo);             // Hello World!

 

$bar = ‘HELLO WORLD!‘;
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>

 

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

 代码如下:
<?php
$foo = ‘hello world!‘;
$foo = ucfirst($foo);             // Hello world!

 

$bar = ‘HELLO WORLD!‘;
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

 

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

 代码如下:
<?php
$foo = ‘HelloWorld‘;
$foo = lcfirst($foo);             // helloWorld

 

$bar = ‘HELLO WORLD!‘;
$bar = lcfirst($bar);             // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>

 

所有字母变大写:strtoupper()
所有字母变小写:strtolower()

  • 1 strtolower()       //将字符串转换为小写形式
  • 2 strtoupper()     //将字符串转换为大写形式
  • 3 ucfirst()           //将字符串的第一个字符转换为大写形式
  • 4 ucwords()       //将字符串中每一个单词的首字母转换为大写形式

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

标签:大写   deb   大小写   first   英文   tle   转换   代码   content   

原文地址:http://www.cnblogs.com/sunjinxiu/p/6871720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!