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