다음은 PHP의 여러 문자 함수에 대한 요약입니다.
1) ucfirst
첫 글자를 대문자로 변경합니다. 예:
$string = "this is my web development blog";
echo ucfirst($string);
// 출력: 제 웹 개발 블로그입니다
2) lcfirst, 첫 글자를 소문자로 변경하세요
$string = "이것은 내 웹 개발 블로그입니다";
echo lcfirst($string);
// 출력: 이것은 내 웹 개발 블로그입니다
3) strtoupper, 교체 전체 문자열이 대문자가 됩니다.
$string = "this is my web development blog";
echo strtoupper($string)
// 출력: THIS IS MY WEB DEVELOPMENT BLOG
4) strtolower, 전체 문자열을 소문자로 변경
$string = "tHiS는 mY WeB DevElOpMenT bLoG입니다."
echo strtolower($string); / 출력: this is my web development blog
5) ucwords(),
$string = "this is my web development blog"와 같이 문장에 있는 각 단어의 첫 글자를 대문자로 쓸 수 있습니다. ;
echo ucwords($string)
// 출력: 이것은 나의 웹 개발 블로그입니다