欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-13 11:28:52
每个单词的首字母转换为大写:ucwords()复制代码 代码如下:

每个单词的首字母转换为大写: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()