public function 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

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php, line 189

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

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