upper() 공개 메소드

Convert the given string to upper-case.
public upper ( ) : string
리턴 string
예제 #1
0
 public function testUpper()
 {
     $str = new StringWrapper('foo');
     $this->assertEquals('FOO', $str->upper());
 }