You are here

public function EasyRdf_ParsedUri::getScheme in Zircon Profile 8

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

Returns the scheme of the URI (e.g. http)

Return value

string

File

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

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

public function getScheme() {
  return $this->scheme;
}