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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。