PHP包括toupper和tolower函数吗?

时间:2009-09-28 12:16:28

标签: php string

PHP是否包含touppertolower等任何功能?

我想要一个tolower函数,它会将ABC转换为abcAbc转换为abc

同样,toupper应将abc转换为ABCAbc转换为ABC

4 个答案:

答案 0 :(得分:14)

答案 1 :(得分:9)

答案 2 :(得分:9)

echo strtolower('HELLO');
echo strtoupper('hello');

答案 3 :(得分:5)

echo strtolower('TEXT'); //text
echo strtoupper('text'); //TEXT
echo ucwords('text text'); //Text Text
echo ucfirst('text text'); //Text text
echo lcfirst('TEXT TEXT'); //tEXT TEXT