lower() public method

Convert the given string to lower-case.
public lower ( ) : string
return string
Exemplo n.º 1
0
 public function testLowerCyrillic()
 {
     $str = new StringWrapper('баШ');
     $this->assertEquals('баш', $str->lower());
 }