Rumah > pembangunan bahagian belakang > tutorial php > php把字符串中的首字符转换为大写的函数ucfirst()

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

黄舟
Lepaskan: 2023-03-17 07:18:01
asal
1655 orang telah melayarinya

实例

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

<?php
echo ucfirst("hello world!");
?>
Salin selepas log masuk

定义和用法

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

相关函数:

  • lcfirst() - 把字符串中的首字符转换为小写

  • ucwords() - 把字符串中每个单词的首字符转换为大写

  • strtoupper() - 把字符串转换为大写

  • strtolower() - 把字符串转换为小写

语法

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

技术细节

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

该函数演示了如何通过ucfirst 函数将字符串首字符转换成大写

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> ucfirst.php </title>
  <meta charset="UTF-8">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
 </head>
 <body>
<?php
//原来首字符小写
$foo = &#39;hello world!&#39;;
$foo2 = ucfirst($foo); //输出 Hello world!
echo $foo . "<br>";
echo $foo2 . "<br>";
//首字符大写,则不改变
$bar = &#39;HELLO WORLD!&#39;;
$bar = ucfirst($bar); //输出 HELLO WORLD!
echo $bar . "<br>";
//将所有字符变成小写后,再将首字符编程大写
$bar = ucfirst(strtolower($bar)); //输出 Hello world!
echo $bar . "<br>";
?>
 </body>
</html>
hello world!
Hello world!
HELLO WORLD!
Hello world!
Salin selepas log masuk


Atas ialah kandungan terperinci php把字符串中的首字符转换为大写的函数ucfirst(). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Label berkaitan:
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan