public function EasyRdf_ParsedUri::__toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::__toString()
Magic method to convert the URI, when casted, back to a string
Return value
string The URI as a string
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ ParsedUri.php, line 336
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Code
public function __toString() {
return $this
->toString();
}