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


PHP ucfirst()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自ChetnaAgarwal大神的英文原創作品 PHP | ucfirst() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。