«

PHP字符串函数lcfirst()的用法

时间:2024-3-1 20:25     作者:韩俊     分类: PHP


lcfirst

(PHP 5 >= 5.3.0)

lcfirst — 使一个字符串的第一个字符小写

说明

string lcfirst
( string $str
)

返回str的第一个字符小写了的字符串。如果str的第一个字符是字母,则将其转换为小写。

需要注意的是“字母”是由当前语言区域决定的。比如,在默认的“C”区域像日耳曼语系中的元音变音a (ä) 将不会被转换。

参数

str

输入的字符串。

返回值

返回转换后的字符串。

范例

Example #1 lcfirst() 例子:

<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo);             // helloWorld

$bar = 'HELLO WORLD!';
$bar = lcfirst($bar);             // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>

参见

ucfirst() - 将字符串的首字母转换为大写 strtolower() - 将字符串转化为小写 strtoupper() - 将字符串转化为大写 ucwords() - 将字符串中每个单词的首字母转换为大写

标签: php php教程

热门推荐