ucwords() 정적인 공개 메소드

An UTF-8 safe version of ucwords()
static public ucwords ( $str ) : string
리턴 string
예제 #1
0
 public function testUcwords()
 {
     $string = str::lower($this->sample);
     $this->assertEquals($this->sample, str::ucwords($string));
 }