$str = "This is liguoliang dot com"; echo "全部变小写 strtolower: ".strtolower($str); echo "
第一个字母大写 ucfirst: ".ucfirst($str); echo "
单词首字母大写 ucwords: ".ucwords($str); echo "
全部变大写 strtoupper: ".strtoupper($str); // 5.3 以后, 支持lcfirst($str); //第一个字母小写
输出:
全部变小写 strtolower: this is liguoliang dot com
第一个字母大写 ucfirst: This is liguoliang dot com
单词首字母大写 ucwords: This Is Liguoliang Dot Com
全部变大写 strtoupper: THIS IS LIGUOLIANG DOT COM
// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.