public function EasyRdf_Resource::__unset in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Resource.php \EasyRdf_Resource::__unset()
Magic method to delete a property of the resource
Note that only properties in the default namespace can be accessed in this way.
Example: unset($resource->title);
Parameters
string $name The name of the property:
See also
EasyRdf_Namespace::setDefault()
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Resource.php, line 716
Class
- EasyRdf_Resource
- Class that represents an RDF resource
Code
public function __unset($name) {
return $this->graph
->delete($this->uri, $name);
}