PHP - lcfirst() 函数



PHP 的 lcfirst() 函数用于将给定字符串的第一个字符转换为小写。 “小写”指的是像 a、b、c……z 这样的字母字符。

即使字符串包含多个单词,此函数也只会将给定字符串中第一个单词的第一个字符转换为小写。

例如,如果我们有字符串“Hi, How are you?”,则结果字符串将为“hi, How are you?”,而不是“hi, how are you?”。

语法

以下是 PHP lcfirst() 函数的语法:

lcfirst(string $str): string

参数

以下是此函数的参数:

  • str - 输入字符串。

返回值

此函数返回第一个字母为小写的字符串。

示例 1

以下是 PHP lcfirst() 函数的基本示例:

<?php
   $str = "Tutorialspoint";
   echo "The original string: $str";
   echo "\nThe resultant string: ";
   #using lcfirst() function
   echo lcfirst($str);
?>

输出

以上程序产生以下输出:

The original string: Tutorialspoint
The resultant string: tutorialspoint

示例 2

如果给定字符串的第一个字符已经是小写,则不会影响原始字符串。

以下是使用 PHP lcfirst() 函数的另一个示例。我们使用此函数将此字符串“Hello World”的第一个字符转换为小写:

<?php
   $str = "hello World";
   echo "The original string: $str";
   echo "\nThe resultant string: ";
   #using lcfirst() function
   echo lcfirst($str);
?>

输出

执行上述程序后,将显示以下输出:

The original string: hello World
The resultant string: hello World
php_function_reference.htm
广告