PHP - strtolower() 函数



PHP 的 strtolower() 函数用于将给定字符串中的所有字母字符(即 A 到 Z)转换为小写。术语“小写”指的是字母系列中的“小写字母”字符,例如 a、b、c、…z。

如果给定字符串已经小写,则此函数不会影响原始字符串,并将保持不变。

语法

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

strtolower(string $str): string

参数

此函数接受一个参数,如下所述:

  • str: 需要转换为小写的输入字符串。

返回值

此函数返回所有字母字符都已转换为小写的字符串。

示例 1

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

<?php
   $str = "TUTORIALSPOINT";
   echo "The given string: $str";
   echo "\nThe string after converting into lowercase: ";
   #using strtolower() function
   echo strtolower($str);
?>

输出

上述程序产生以下输出:

The given string: TUTORIALSPOINT
The string after converting into lowercase: tutorialspoint

示例 2

以下是使用 PHP strtolower() 函数的另一个示例。此函数将给定字符串“Hello World!”中的所有字母字符转换为小写:

<?php
   $str = "Hello World!";
   echo "The given string: $str";
   echo "\nThe string after converting into lowercase: ";
   #using strtolower() function
   echo strtolower($str);
?>

输出

以下是上述程序的输出:

The given string: Hello World!
The string after converting into lowercase: hello world!

示例 3

如果给定字符串已经小写,则 PHP strtolower() 函数不会影响原始字符串,它将保持不变:

<?php
   $str = "hey!, how are you";
   echo "The given string: $str";
   echo "\nThe string after converting into lowercase: ";
   #using strtolower() function
   echo strtolower($str);
?>

输出

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

The given string: hey!, how are you
The string after converting into lowercase: hey!, how are you
php_function_reference.htm
广告