首页 > 代码库 > PHP英文字母大小写转换函数小结
PHP英文字母大小写转换函数小结
每个单词的首字母转换为大写:ucwords()
代码如下:
<?php
$foo = ‘hello world!‘;
$foo = ucwords($foo); // Hello World!
$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!
$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
$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英文字母大小写转换函数小结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。