public function EasyRdf_Graph::getResource in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Graph.php \EasyRdf_Graph::getResource()
Get a single resource value for a property of a resource
If multiple values are set for a property then the value returned may be arbitrary.
This method will return null if there is not resource for the property.
Parameters
string $resource The URI of the resource (e.g. http://example.com/joe#me):
string|array $property The name of the property (e.g. foaf:name):
Return value
object EasyRdf_Resource Resource associated with the property
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Graph.php, line 689
Class
- EasyRdf_Graph
- Container for collection of EasyRdf_Resources.
Code
public function getResource($resource, $property) {
return $this
->get($resource, $property, 'resource');
}