當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。