You are here

public function EasyRdf_GraphStore::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/GraphStore.php \EasyRdf_GraphStore::__construct()

Create a new SPARQL Graph Store client

Parameters

string $uri The address of the graph store endpoint:

File

vendor/easyrdf/easyrdf/lib/EasyRdf/GraphStore.php, line 62

Class

EasyRdf_GraphStore
A class for fetching, saving and deleting graphs to a Graph Store. Implementation of the SPARQL 1.1 Graph Store HTTP Protocol.

Code

public function __construct($uri) {
  $this->uri = $uri;
  $this->parsedUri = new EasyRdf_ParsedUri($uri);
}