String Functions
在PHP | string这篇文章中,我们了解了PHP中可用的一些基本字符串操作函数。在本文中,我们将了解一些用于更改PHP中字符串的字符情况的字符串函数。下面是PHP中一些最常用的字符串用例操作函数:
strtoupper() function in PHP
这个函数接受一个字符串作为参数,并返回所有字符为大写的字符串。
语法
1 | strtoupper($string) |
说明程序使用strtoupper()函数:
1 2 3 4 5 6 7 8 9 10 | <?php # PHP code to convert to Upper Case function toUpper($string){ return(strtoupper($string)); } // Driver Code $string="sky8g"; echo (toUpper($string)); ?> |
输出
1 | SKY8G |
strtolower() function in PHP
这个函数接受一个字符串作为参数,并返回一个字符串,其中所有字符用小写字母表示。
语法
1 2 3 4 5 6 7 8 9 10 | <?php # PHP code to convert to Lower Case function toLower($string){ return(strtolower($string)); } // Driver Code $string="SKY8G"; echo (toLower($string)); ?> |
输出
1 | sky8g |
ucfirst() function in PHP
这个函数接受一个字符串作为参数,并返回第一个字符为大写的字符串,所有其他字符的情况保持不变。
语法
1 | ucfirst($string) |
程序说明使用ucfirst()函数:
1 2 3 4 5 6 7 8 9 10 | <?php # PHP code to convert the first letter to Upper Case function firstUpper($string){ return(ucfirst($string)); } // Driver Code $string="welcome to Sky8g"; echo (firstUpper($string)); ?> |
输出
1 | Welcome to Sky8g |
lcfirst() function in PHP
这个函数接受一个字符串作为参数,并返回第一个字符为小写的字符串,其他所有字符保持不变。
语法
1 | lcfirst($string) |
程序说明lcfirst()函数的使用:
1 2 3 4 5 6 7 8 9 10 | <?php # PHP code to convert the first letter to Lower Case function firstLower($string){ return(lcfirst($string)); } // Driver Code $string="WELCOME to SKY8G"; echo (firstLower($string)); ?> |
输出
1 | wELCOME to SKY8G |
ucwords() function in PHP
这个函数接受一个字符串作为参数,并返回每个单词的首字母大写的字符串,其他所有字符保持不变。
语法
1 | ucwords($string) |
说明程序使用ucwords()函数:
1 2 3 4 5 6 7 8 9 10 11 | <?php # PHP code to convert the first letter # of each word to Upper Case function firstUpper($string){ return(ucwords($string)); } // Driver Code $string="welcome to Sky8g"; echo (firstUpper($string)); ?> |
输出
1 | Welcome To Sky8g |
strlen() function in PHP
该函数以字符串作为参数,返回表示字符串长度的整数值。它计算字符串的长度,包括所有空格和特殊字符。
语法
1 | strlen($string) |
说明程序使用strlen()函数:
1 2 3 4 5 6 7 8 9 10 | <?php # PHP code to get the length of any string function Length($string){ return(strlen($string)); } // Driver Code $string="welcome to sky8g"; echo (Length($string)); ?> |
输出
1 | 16 |