ucfirst可以对字符串首字母进行大小,ucwords可以对字符串中每个单词的首字母大写输出
/**
* PHP控制首字母大写和单词首字母大写的的方法
*
* @param
* @arrange 512-笔记网: www.www.jb51.cc
**/
<?PHP
print ucfirst("hello world");
print ucwords("iam king of the jungle");
?>
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:/php/528398.html