ucfirst()函數是PHP中的內置函數,該函數將字符串作為參數,並以大寫字母返回第一個字符的字符串,而所有其他字符保持不變。
用法:
ucfirst($string)
參數:該函數僅接受一個必需的參數$string。此參數表示第一個字符將變為大寫的字符串。
返回值:該函數僅通過將第一個字符更改為傳遞的參數$string的大寫字母來返回相同的字符串。
例子:
Input : "geeks for geeks" Output : Geeks for geeks Input : "Chetna Agarwal" Output : Chetna Agarwal
以下示例程序旨在說明PHP中的ucfirst()函數:
程序1:下麵的程序演示了ucfirst()函數的用法。
<?php
// PHP program that demonstrates the
// use of ucfirst() function
$str = "geeks for geeks";
// converts the first case to upper case
// and prints the string
echo(ucfirst($str));
?>
輸出:
Geeks for geeks
程序2:下麵的程序演示了起始字符在upper-case中時ucfirst()函數的使用。
<?php
// PHP program that demonstrates the
// use of ucfirst() function when
// the first case is already in uppercase
$str = "Chetna Agarwal";
// already the first character is in upper case
// so prints the same string only
echo(ucfirst($str));
?>
輸出:
Chetna Agarwal
參考:
http://php.net/manual/en/function.ucfirst.php
相關用法
- p5.js nfp()用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nfs()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfc()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
注:本文由純淨天空篩選整理自ChetnaAgarwal大神的英文原創作品 PHP | ucfirst() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。