getPath() 공개 메소드

Path component (after host, before query string delimiter '?')
public getPath ( ) : string
리턴 string
예제 #1
0
파일: UrlTest.php 프로젝트: 99designs/ergo
 public function testWithoutPath()
 {
     $url = new Http\Url('http://example.org');
     $this->assertEquals($url->getPath(), '/');
 }