update : 2015.11.03
php.shukuma.com검색:
|
ucwords(PHP 4, PHP 5) ucwords — Uppercase the first character of each word in a string 설명
string ucwords
( string
$str
[,
string $delimiters = " \t\r\n\f\v"
] )
Returns a string with the first character of each word in
The definition of a word is any string of characters that is immediately
after any character listed in the 인수
반환값Returns the modified string. 변경점
예제
Example #1 ucwords() example
<?php
Example #2 ucwords() example with custom delimiter
<?php 주의
참고
|