underscoreToDash() 공개 정적인 메소드

Method to convert the string from under_score to dash format
public static underscoreToDash ( string $string ) : string
$string string
리턴 string
예제 #1
0
 public function testUnderscoreToDash()
 {
     $this->assertEquals('hello-world', String::underscoreToDash('hello_world'));
 }