lcfirst()函数是PHP中的内置函数,该函数将字符串作为参数,并以小写形式返回具有第一个字符的字符串,而所有其他字符均保持不变。
用法:
lcfirst($string)
参数:该函数仅接受一个必需的参数$string。此参数表示输入字符串,其第一个字符将更改为小写。
返回值:该函数仅通过将第一个字符更改为传递的参数$string的小写字母来返回相同的字符串。
例子:
Input : "Geeks for geeks" Output : geeks for geeks Input : "chetna agarwal" Output : chetna agarwal
以下示例程序旨在说明PHP中的lcfirst()函数:
程序1:
<?php
// PHP program to demonstrates the
// use of lcfirst() function
$str = "Geeks for geeks";
// converts the first character to
// lower case and prints the string
echo(lcfirst($str));
?>
输出:
geeks for geeks
程序2:当起始字符已经在lower-case中时,以下程序演示了lcfirst()函数的使用。
<?php
// PHP program that demonstrates the
// use of lcfirst() function when
// the first case is already in lowercase
$str = "chetna agarwal";
// already the first character is in lower case
// so prints the same string only
echo(lcfirst($str));
?>
输出:
chetna agarwal
参考:
http://php.net/manual/en/function.lcfirst.php
相关用法
- PHP next()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- p5.js day()用法及代码示例
- CSS var()用法及代码示例
- p5.js pow()用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js sq()用法及代码示例
- p5.js abs()用法及代码示例
- PHP pi( )用法及代码示例
- p5.js value()用法及代码示例
- PHP Ds\Map get()用法及代码示例
注:本文由纯净天空筛选整理自ChetnaAgarwal大神的英文原创作品 PHP | lcfirst() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。