underscoreToSeparator() public static method

Method to convert the string from under_score to separator format
public static underscoreToSeparator ( string $string, string $sep = DIRECTORY_SEPARATOR ) : string
$string string
$sep string
return string
Esempio n. 1
0
 public function testUnderscoreToSeparator()
 {
     $this->assertEquals('hello' . DIRECTORY_SEPARATOR . 'world', String::underscoreToSeparator('hello_world'));
 }