You are here

public function EasyRdf_ParsedUri::isAbsolute in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::isAbsolute()

Returns true if this is an absolute (complete) URI

Return value

boolean

File

vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php, line 100

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

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