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