반응형
Description (설명)
ucwords(string $string, string $separators = " \t\r\n\f\v"): string
문자열에서 각 단어의 첫 글자를 대문자로 변환합니다.
$separators 인자는 구분자로 구분자를 입력하면 구분자 뒤 1글자를 대문자로 변환합니다.
$separators의 기본 값은 공백, \t, \r, \n, \f, \v 6가지입니다.
Example (예시)
<?php
$text = "hello everyone!";
echo ucwords($text);
// Hello Everyone!
$text2 = "!my !name !is !j!o!h!n";
echo ucwords($text, '!');
// !My !Name !Is !J!O!H!N
?>
반응형