ucwords() static public method

An UTF-8 safe version of ucwords()
static public ucwords ( $str ) : string
return string
Esempio n. 1
0
 public function testUcwords()
 {
     $string = str::lower($this->sample);
     $this->assertEquals($this->sample, str::ucwords($string));
 }