lower() 공개 메소드

Convert the given string to lower-case.
public lower ( ) : string
리턴 string
예제 #1
0
 public function testLowerCyrillic()
 {
     $str = new StringWrapper('баШ');
     $this->assertEquals('баш', $str->lower());
 }