dosToUnix() 공개 정적인 메소드

Method to convert newlines from DOS to UNIX
public static dosToUnix ( string $string ) : string
$string string
리턴 string
예제 #1
0
 public function testDosToUnix()
 {
     $this->assertEquals("hello\n", String::dosToUnix("hello\r\n"));
 }