当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP lcfirst()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自ChetnaAgarwal大神的英文原创作品 PHP | lcfirst() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。