public function EasyRdf_ParsedUri::getFragment in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::getFragment()
Returns the fragment part of the URI (i.e. after the #)
Return value
string
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ ParsedUri.php, line 180
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Code
public function getFragment() {
return $this->fragment;
}