PHP将字符串首字母大小写转换的实例
发布:smiling 来源: PHP粉丝网 添加日期:2018-07-01 16:40:29 浏览: 评论:0
每个单词的首字母转换为大写: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!
- /phpfensi.com
- $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 字符串编码转换程序(2013-12-03)
- ·php中文字符串截取乱码问题解决方法(2013-12-04)
- ·php生成字符串随机码实现方法(2013-12-19)
- ·PHP生成随机字符串程序代码(2014-01-06)
- ·php 只替换第一次出现的字符串(2014-01-07)
- ·php 字符串替换为星号或其它字符(手机号,身份证)(2014-01-11)
- ·php截断带html字符串文章内容的方法(2014-01-12)
- ·php substr()函数截取中文字符串乱码(2014-01-18)
- ·php字符串与字符串操作教程详解(2014-02-22)
- ·PHP字符串处理之学习笔记(2014-02-22)
- ·PHP判断一个字符串是否是回文字符串(2014-03-06)
- ·php 替换字符串中第N次出现的字符代码(2014-03-19)
- ·PHP像数组一样存取和修改字符串字符(2014-06-11)
- ·php中英文字符串长度截取的例子(2014-06-28)
- ·php去除字符串首尾中英文空格程序(2014-07-04)
- ·php字符串首字母转换大小写实例(2014-07-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)