PHP (首)字母大写操作

Categories: PHP; Tagged with: ; @ September 8th, 2010 20:44

所有字母大写/小写; 单词首字母大写; 第一个字母大写/小写:

$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

参考:  http://php.net/manual/en/function.ucfirst.php

<->



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.