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