Exemplo n.º 1
0
 public function testGetHost()
 {
     $uri = new Uri('http://blog.wani.kr');
     $this->assertEquals('blog.wani.kr', $uri->getHost());
     // If no host is present, this method MUST return an empty string.
     $uri = new Uri('/hello/world');
     $this->assertEquals('', $uri->getHost());
     // The value returned MUST be normalized to lowercase, per RFC 3986
     // Section 3.2.2.
     $uri = new Uri('http://BLOG.WANI.KR');
     $this->assertEquals('blog.wani.kr', $uri->getHost());
 }