public function EasyRdf_ParsedUri::setScheme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::setScheme()
Sets the scheme of the URI (e.g. http)
Parameters
string $scheme The new value for the scheme of the URI:
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ ParsedUri.php, line 124
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Code
public function setScheme($scheme) {
$this->scheme = $scheme;
}