服务器之家

服务器之家 > 正文

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

时间:2020-06-27 15:09     来源/作者:PHP教程网

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

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
返回顶部