upper() public method

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