lcfirst
lcfirst
(PHP 5 >= 5.3.0, PHP 7)
lcfirst - 使字符串的第一个字符小写
描述
string lcfirst ( string $str )
如果该字符是字母型的,则返回一个字符串,其中第一个字符为str lowercased。
请注意,“字母”由当前语言环境决定。例如,默认的“C”语言环境字符(如umlaut-a(ä))将不会被转换。
参数
str
输入字符串。
返回值
返回结果字符串。
例子
示例#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() - 大写字符串中每个单词的第一个字符
← join
levenshtein →