join() 공개 정적인 메소드

Joins paths together
public static join ( string $path1, string $path2 ) : string
$path1 string
$path2 string
리턴 string
예제 #1
0
 public function testJoin()
 {
     $path = "foo" . DIRECTORY_SEPARATOR . "bar";
     $this->assertEquals($path, Utils::join('foo', 'bar'));
 }