>php教程 >php手册 >分享php中几个字符函数小结

分享php中几个字符函数小结

WBOY
WBOY원래의
2016-06-13 10:47:031003검색

下面小结PHP中的几个字符函数, 小结一下:
 
1)ucfirst
   将首字母变大写,比如
  $string = "this is my web development blog";
 
echo ucfirst($string);
 
// Output: This is my web development blog
 
2) lcfirst,将首字母变小写
   $string = "This is my Web Development Blog";
 
echo lcfirst($string);
 
// Output: this is my Web Development Blog
 
3)strtoupper,将整个字符串变大写
   $string = "this is my web development blog";
 
echo strtoupper($string);
 
// Output: THIS IS MY WEB DEVELOPMENT BLOG
 
4)strtoplower,将整个字符串变小写
   $string = "tHiS is mY WeB DevElOpMenT bLoG";
 
echo strtolower($string);
 
// Output: this is my web development blog
 
5)ucwords(),可以将句子中每个单词的第一个字母变大写,比如
   $string = "this is my web development blog";
 
echo ucwords($string);
 
// Output: This Is My Web Development Blog

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.