You are here

public function Uri::isAbsolute in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Uri.php \Zend\Feed\Uri::isAbsolute()

Is the URI absolute?

Return value

bool

File

vendor/zendframework/zend-feed/src/Uri.php, line 180

Class

Uri

Namespace

Zend\Feed

Code

public function isAbsolute() {
  return $this->scheme !== null;
}