分享一下PHP各种花式转换字符串为大小写(其实是想水一下文章)
将所有字母转换为大写
$str = "yuanxi_boke";
$str = strtoupper($str);
echo $str; //输出:YUANXI_BOKE
将所有字母转换为小写
$str = "YUANXI_BOKE"; //定义需要转换的字符串
$str = strtolower($str);
echo $str; //输出:yuanxi_boke
将字符串中每个单词的首字母转换为大写
$foo = '远昔博客yx yuanxi_boke yx
xiaobaiyun';
$foo = ucwords($foo);
echo $foo; //输出:远昔博客yx Yuanxi_boke Yx Xiaobaiyun
将首个字符转换为大写
$foo = 'yx yuanxi_boke';
$foo = ucfirst($foo);
echo $foo;//输出:Yx yuanxi_boke
将末尾字符转换为大写
$foo='yuanxiy';
$foo=ucfirst(strrev($foo)); //strrev反转顺序
$foo=strrev($foo); echo $foo; //输出:yuanxiY
评论
发表评论: