strtoupper()函数
strtoupper()函数可以将字符串作为参数,然后把字符串全部转换为大写,并返回。
基本语法:
strtoupper(string)
示例:
?php function toUpper($string){ return(strtoupper($string)); $string= Hello world! echo (toUpper($string)); ?
输出:
strtolower()函数
strtolower()函数可以将字符串作为参数,然后把字符串全部转换为小写,并返回。
基本语法:
strtolower(string)
示例:
?php function toUpper($string){ return(strtolower($string)); $string= JAVASCRIPT echo (toUpper($string)); ?
输出:
ucfirst()函数
ucfirst()函数可以将字符串作为参数,然后把字符串的首字母转换为大写,其他字符不变,并返回。
基本语法:
ucfirst(string)
示例:
?php function toUpper($string){ return(ucfirst($string)); $string= hello world! echo (toUpper($string)); ?
输出:
lcfirst() 函数
lcfirst()函数可以将字符串作为参数,然后把字符串的首字母转换为小写,其他字符不变,并返回。
基本语法:
lcfirst(string)
示例:
?php function toUpper($string){ return(lcfirst($string)); $string= PHP ! echo (toUpper($string)); ?
输出:
以上就是本篇文章的全部内容,希望能对大家的学习有所帮助。更多精彩内容大家可以关注php 相关教程栏目!!!
以上就是PHP如何对字符串进行大小写处理的详细内容,PHP教程
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。
新闻热点
疑难解答