public function EasyRdf_ParsedUri::getAuthority in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::getAuthority()
Returns the authority of the URI (e.g. www.example.com:8080)
Return value
string
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ ParsedUri.php, line 132
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Code
public function getAuthority() {
return $this->authority;
}