You are here

public function EasyRdf_ParsedUri::setFragment in Zircon Profile 8

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

Set the fragment of the URI (i.e. after the #)

Parameters

string $fragment The new value for the fragment component of the URI:

File

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

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

public function setFragment($fragment) {
  $this->fragment = $fragment;
}