PHP英文字母大小写转换函数小结
发布:smiling 来源: PHP粉丝网 添加日期:2020-11-25 14:35:02 浏览: 评论:0
这篇文章主要介绍了几个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()
Tags: PHP英文字母大小写转换
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)