public function EasyRdf_ParsedUri::isRelative in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::isRelative()
Returns true if this is an relative (partial) URI
Return value
boolean
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ ParsedUri.php, line 108
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Code
public function isRelative() {
return $this->scheme === null;
}