找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索本站精品资源

首页 教程频道 查看内容

php怎么将字符串转为小写

作者:模板之家 2021-5-17 19:42 183人关注

php将字符串转为小写的方法:1、用strtolower()函数,可以将字符串中的字母全部转换为小写,语法“strtolower(字符串)”;2、用lcfirst()函数,可以将字符串中的首字符转换为小写,语法“lcfirst(字符串)”。

php将字符串转为小写的方法:1、strtolower()函数,可以将字符串中的字母全部转换为小写,语法“strtolower(字符串)”;2、lcfirst()函数,可以将字符串中的首字符转换为小写,语法“lcfirst(字符串)”。

本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑

php可以将字符串转为小写

方法1:使用strtolower() 函数

strtolower() 函数把字符串转换为小写。

语法:

strtolower(string)

示例:

<?php
echo strtolower("Hello WORLD!");
?>

输出:

hello world!

方法2:使用lcfirst()函数

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

语法:

lcfirst(string)

示例:

<?php
echo lcfirst("HELLO WORLD!");
?>

输出:

hELLO WORLD!

推荐学习:《PHP视频教程》

以上就是php怎么将字符串转为小写的详细内容,更多请关注模板之家(www.mb5.com.cn)其它相关文章!


路过

雷人

握手

鲜花

鸡蛋
来自: 网络收集

全部回复(0)