小码哥的IT人生

首页 > PHP > php基础

PHP ucfirst() 字符串 函数 详解

php基础 2022-06-07 17:04:33小码哥的IT人生shichen

PHP ucfirst() 函数

实例

把 "hello" 的首字符转换为大写:

<?php
echo ucfirst("hello world!");
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
echo ucfirst("hello world!");
?>
</body>
</html>

 

定义和用法

ucfirst() 函数把字符串中的首字符转换为大写。

相关函数:

  1. lcfirst() - 把字符串中的首字符转换为小写
  2. strtolower() - 把字符串转换为小写
  3. strtoupper() - 把字符串转换为大写
  4. ucwords() - 把字符串中每个单词的首字符转换为大写

语法

ucfirst(string)
参数 描述
string 必需。规定要转换的字符串。

技术细节

返回值: 返回已转换的字符串。
PHP 版本: 4+

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024