forked from easyrdf/easyrdf
-
Notifications
You must be signed in to change notification settings - Fork 6
/
zend_framework.php
54 lines (48 loc) · 1.49 KB
/
zend_framework.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* Using EasyRdf with the Zend Framework
*
* This example demonstrates using Zend_Http_Client and
* Zend_Loader_Autoloader with EasyRdf.
*
* It creates a simple graph in memory, saves it to a local graphstore
* and then fetches the data back using a SPARQL SELECT query.
* Zend's curl HTTP client adaptor is used to perform the HTTP requests.
*
* @copyright Copyright (c) 2009-2014 Nicholas J Humfrey
* @license http://unlicense.org/
*/
require_once realpath(__DIR__.'/..').'/vendor/autoload.php';
// use the CURL based HTTP client adaptor
$client = new Zend\Http\Client(
null,
[
'adapter' => 'Zend\Http\Client\Adapter\Curl',
'keepalive' => true,
'useragent' => 'EasyRdf/zendtest',
]
);
EasyRdf\Http::setDefaultHttpClient($client);
?>
<html>
<head>
<title>Zend Framework Example</title>
</head>
<body>
<h1>Zend Framework Example</h1>
<?php
// Load some sample data into a graph
$graph = new EasyRdf\Graph('http://example.com/joe');
$joe = $graph->resource('http://example.com/joe#me', 'foaf:Person');
$joe->add('foaf:name', 'Joe Bloggs');
$joe->addResource('foaf:homepage', 'http://example.com/joe/');
// Store it in a local graphstore
$store = new EasyRdf\GraphStore('http://localhost:8080/data/');
$store->replace($graph);
// Now make a query to the graphstore
$sparql = new EasyRdf\Sparql\Client('http://localhost:8080/sparql/');
$result = $sparql->query('SELECT * WHERE {<http://example.com/joe#me> ?p ?o}');
echo $result->dump();
?>
</body>
</html>